Ver Mensaje Individual
  #4 (permalink)  
Antiguo 06/03/2004, 12:01
ivanguillen
 
Fecha de Ingreso: agosto-2003
Ubicación: España
Mensajes: 202
Antigüedad: 20 años, 8 meses
Puntos: 0
perdona este error tan tonto, fijate bien:
Código PHP:

<?php
include('bd_cfig.php');
$ssql "Select * From clientes";
$totalclientes mysql_num_rows($ssql); // o mysql_num_row no me acuerdo bien
$num "0";
while((
$cliente mysql_fetch_object($ssql)) OR ($num <= $totalclientes ) ){
echo 
"$num - $cliente['direccion'] , $cliente['nombre']";
$num++ ; // aki las ;
}

 
?>