Mysql
 sql >> Database >  >> RDS >> Mysql

Il recupero PDO restituisce solo la prima riga

Aggiungi un ciclo while,

while($row= $sth->fetch( PDO::FETCH_ASSOC )){ 
   echo $row['your_field_name'];
}

Oppure puoi usare fetchAll

$rows = $sth->fetchAll();
print_r($rows);