Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/07/2006, 06:16
all-ill
 
Fecha de Ingreso: junio-2002
Mensajes: 750
Antigüedad: 21 años, 10 meses
Puntos: 22
Código PHP:
$consulta "SELECT * FROM EMPLEADOS";
$resultado mysql_db_query($consulta); // ejecutar la consulta

// recorrer los reslutados
while( $fila mysql_fetch_array($resultado) ){
  echo 
$fila['nombre'] . '<br/>';
  echo 
$fila['apellido'];