Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/01/2008, 13:13
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 5 meses
Puntos: 2135
Re: Poner un for dentro de un while

Prueba asi:
Código PHP:
$num 0;
while(
$row mysql_fetch_array($result))
{
$num++;
printf("<tr><td>%s</td><td>&nbsp;%s</td><td>&nbsp;%s</td><td>&nbsp;%s</td></tr>",$num$row["accor_vales"],$row["accor_num_empleados"],$row["accor_lp"]);
}
mysql_free_result($result);
mysql_close($link); 
Saludos.