Ajouter une boucle while,
while($row= $sth->fetch( PDO::FETCH_ASSOC )){
echo $row['your_field_name'];
}
Ou vous pouvez utiliser fetchAll
$rows = $sth->fetchAll();
print_r($rows);
Ajouter une boucle while,
while($row= $sth->fetch( PDO::FETCH_ASSOC )){
echo $row['your_field_name'];
}
Ou vous pouvez utiliser fetchAll
$rows = $sth->fetchAll();
print_r($rows);