Vracíte pouze první řádek, protože voláte pouze fetch()
jednou. Zavolejte to ve smyčce a shromážděte výsledky do pole:
while ($row = $return->fetch()) {
// Append the current row onto your array
$this->minis[] = $row;
}
return true;
Vracíte pouze první řádek, protože voláte pouze fetch()
jednou. Zavolejte to ve smyčce a shromážděte výsledky do pole:
while ($row = $return->fetch()) {
// Append the current row onto your array
$this->minis[] = $row;
}
return true;