Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/11/2004, 20:49
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
usa header()

if($enviado)
{
header("location: gracias.php");
exit();
}
else
{
header("location: sorry.php");
exit();
}

No usar echo ni colocar html antes de usar header()

Última edición por claudiovega; 28/11/2004 a las 20:50