Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/08/2006, 15:34
Cluster
O_O
 
Fecha de Ingreso: enero-2002
Ubicación: Santiago - Chile
Mensajes: 34.417
Antigüedad: 22 años, 4 meses
Puntos: 129
No sé por qué tiene que ser un "while" .. un foreach() te vendría bien

Sería algo así:
Código PHP:
foreach ($tu_array as $indice=>$row){
 echo 
$row['id']." --> ".$row['username']."<br>";

Con un "while" .. lo anterior equivaldría a:
Código PHP:
while (list($indice$row) = each($tu_array)) {
   echo 
$row['id']." --> ".$row['username']."<br>"

Un saludo,
__________________
Por motivos personales ya no puedo estar con Uds. Fue grato haber compartido todos estos años. Igualmente los seguiré leyendo.