Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/06/2007, 07:18
Avatar de spider_boy
spider_boy
 
Fecha de Ingreso: diciembre-2003
Ubicación: Chile
Mensajes: 1.855
Antigüedad: 20 años, 4 meses
Puntos: 89
Re: Redireccionar paginaº

Pues sería algo así...

$sql = 'Consulta sql...';
if(mysql_num_rows($sql)>0) header('Location: datos.php'); die();
else header('Location: noexiste.php'); die();
mysql_free_result($sql);

Algo así, me imagino XD

Nos vemos.