En el tuto que te dejaron en el otro thread, tenes varios ejemplos:
Código PHP:
Ver original/*** loop over the results ***/
$stmt = $dbh->prepare('SELECT * FROM animals');
$stmt->execute();
while($row = $stmt->fetch())
{
echo $row['animal_type'].'<br />';
echo $row['animal_name'];
}