Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/04/2006, 10:50
Avatar de mauled
mauled
 
Fecha de Ingreso: marzo-2005
Ubicación: Cd. de México.
Mensajes: 3.001
Antigüedad: 19 años, 1 mes
Puntos: 33
De acuerdo

Código PHP:
<?

    $res
mysql_query=("Select * from user");
    echo 
"<table>";
    while(
$row mysql_fetch_array($res))
    {
         echo 
"<tr>"
         
echo"<td>".$row[nombre]."</td>";
         echo
"<td>".$row[apellidos]."</td>"   
         
echo"<td>".$row[mail]."</td>"       
         
echo "<tr>";
    }
   echo
"</table>";
?>