Help for this page
$k = 0; while (@results = $sth->fetchrow_array()) { $data[$k] = [ @results ]; $k++; }
while($results = $sth->fetchrow_array_ref()) { push @data, $results; }