![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
25/08/2008, 03:17
|
| | Fecha de Ingreso: mayo-2008
Mensajes: 253
Antigüedad: 16 años, 8 meses Puntos: 8 | |
Respuesta: no se porque..... Lo he cambiado solo a fechas y nada
$sql = "INSERT INTO usuarios (nick, password, email, nombre, ciudad, edad, reloj, fecha) VALUES (";
$sql .= "'".quitar($HTTP_POST_VARS["usuL"])."'";
$sql .= ",'".quitar($HTTP_POST_VARS["passL"])."'";
$sql .= ",'".quitar($HTTP_POST_VARS["mailL"])."'";
$sql .= ",'".quitar($HTTP_POST_VARS["nombreL"])."'";
$sql .= ",'".quitar($HTTP_POST_VARS["ciudadL"])."'";
$sql .= ",'".quitar($HTTP_POST_VARS["edadL"])."'";
$sql .= ",'".quitar($HTTP_POST_VARS["fechaL"])."'";
$sql .= ")";
mysql_query($sql);
echo "&estatus=ok&"; //registro exitoso
}
mysql_free_result($result);
mysql_close();
}
else
{
echo "&estatus=nomail&"; //mail incorrecto
}
?> |