Help for this page
my @results; while (my @row = $sth->fetchrow_array) { ... } else { ...we got nothing... }
my $results = 0; while (my @row = $sth->fetchrow_array) { ... } else { ...we got nothing... }