Tilføj en while-løkke,
while($row= $sth->fetch( PDO::FETCH_ASSOC )){
echo $row['your_field_name'];
}
Eller du kan bruge fetchAll
$rows = $sth->fetchAll();
print_r($rows);
Tilføj en while-løkke,
while($row= $sth->fetch( PDO::FETCH_ASSOC )){
echo $row['your_field_name'];
}
Eller du kan bruge fetchAll
$rows = $sth->fetchAll();
print_r($rows);