Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/03/2006, 13:10
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Prueba imprimir el numero de registros devuelto.

Código PHP:
<?php
   $s
="select * from visitas group by id_producto order by count(idvisitas) desc";
   
$r=mysql_query($s$link);
   echo 
mysql_num_rows($r);
   while (
$ro=mysql_fetch_object($r)){
      echo 
campo;
   }  
?>