Agrega un ciclo while,
while($row= $sth->fetch( PDO::FETCH_ASSOC )){
echo $row['your_field_name'];
}
O puede usar fetchAll
$rows = $sth->fetchAll();
print_r($rows);
Agrega un ciclo while,
while($row= $sth->fetch( PDO::FETCH_ASSOC )){
echo $row['your_field_name'];
}
O puede usar fetchAll
$rows = $sth->fetchAll();
print_r($rows);