Ver Mensaje Individual
  #14 (permalink)  
Antiguo 30/05/2003, 23:05
cheval
 
Fecha de Ingreso: mayo-2003
Mensajes: 7
Antigüedad: 21 años
Puntos: 0
en cuanto a mi ultima pregunta ya encontre porque no me salia ningun dato..

************
echo"<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n";
while ($user_ok = mysql_fetch_row($consulta))
{
echo"<tr> \n"
." <form action=\"autentificar.php\" method=\"POST\">";
echo '<td>'.$user_ok["usermail"].'</td>';
echo '<td>'.$user_ok["username"].'</td>';
echo '<td>'.$user_ok["userocu"].'</td>';
echo"<td><input type=submit value=\"Ver\"></td>"
."</form>"
."</tr> \n";
}
echo"</table>";
*********



modificacion
***********
cambie
mysql_fetch_row(....
por
mysql_fetch_array(....

y se arreglo todo... gracias...