Ver Mensaje Individual
  #11 (permalink)  
Antiguo 09/10/2010, 21:28
eduardo160
 
Fecha de Ingreso: julio-2010
Mensajes: 523
Antigüedad: 14 años, 4 meses
Puntos: 4
Respuesta: problema con redireccionamento

hola me dice este error en el codigo que me diste


Parse error: syntax error, unexpected '}', expecting ',' or ';' in C:\AppServ\www\noticias\login.php on line 31




copio completamente la pagina para que veas bn la linea y todo

Código PHP:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>Documento sin t&iacute;tulo</title>
  6. </head>
  7.  
  8. <body>
  9. <?php
  10. $servidor="localhost";
  11. $usuario="root";
  12. $password="1234";
  13. $db="registro";
  14.  
  15. $conn = mysql_connect($servidor,$usuario,$password) or die("Error conectando...");
  16. mysql_select_db($db, $conn) or die("No consigue la base de datos");
  17.  
  18. //consulta a la tabla
  19. $result=mysql_query("select * from usuario where cedula='".$cedula."' and clave='".$clave."'");
  20.  
  21. //buscamos el registro y respondemos
  22. while($row=mysql_fetch_array($result)) {
  23.     if ($clave==$row["clave"]) {
  24.         $respuesta='registrado.php';
  25.         //header("location:registrado.php");
  26.         echo "<script language='javascript'>location.href='registrado.php'</script>";
  27.         exit;
  28.     }else{
  29. //usuario no registrado
  30.         $respuesta='noregistrado.php';
  31.         //header("location:noregistrado.php");
  32.         echo "<script language='javascript'>location.href='noregistrado.php'</script>";
  33.         exit;
  34.     }
  35. }
  36. ?>
  37.  
  38. </body>
  39. </html>