Ver Mensaje Individual
  #16 (permalink)  
Antiguo 12/03/2007, 06:59
lotusxxl
 
Fecha de Ingreso: junio-2002
Mensajes: 243
Antigüedad: 22 años, 8 meses
Puntos: 1
Re: Qué error ven aquí? (URGENTISIMO)

Buenas en el prmer codigo q has puesto....

cuando pones esto....

Código PHP:
$consulta mysql_query ("SELECT username FROM sfalls WHERE username = '$_GET[username]'");
$registro mysql_fecth_array($consulta);
$registro $consulta[0]; 
deberías poner-lo así...

Código PHP:
$consulta mysql_query ("SELECT username FROM sfalls WHERE username = '".$_GET["username"]."'");
$registro = @mysql_fecth_array($consulta);
$registro $registro[0];