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

Impaginazione tramite PDO con MySQL

Stai restituendo solo la prima riga perché chiami solo fetch() una volta. Chiamalo in un ciclo e accumula i risultati in un array:

while ($row = $return->fetch()) {
  // Append the current row onto your array
  $this->minis[] = $row;
}
return true;