Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/04/2011, 13:36
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 16 años, 3 meses
Puntos: 845
Respuesta: foreach while PDO

En el tuto que te dejaron en el otro thread, tenes varios ejemplos:

Código PHP:
Ver original
  1. /*** loop over the results ***/
  2. $stmt = $dbh->prepare('SELECT * FROM animals');
  3. $stmt->execute();
  4. while($row = $stmt->fetch())
  5. {
  6.     echo $row['animal_type'].'<br />';
  7.     echo $row['animal_name'];
  8. }
__________________
http://es.phptherightway.com/
thats us riders :)