Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/12/2002, 06:32
DaneelR
 
Fecha de Ingreso: julio-2002
Ubicación: Elche
Mensajes: 153
Antigüedad: 21 años, 9 meses
Puntos: 0
Me explico mejor

Esto es lo tuyo:

<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body><?php header("Location: http://www.google.com/"); // linea 7
exit;
?>

</body>
</html>

Y se tiene que quedar así:

<?php
header("Location: http://www.google.com/");
exit;
?>