Help for this page
my $x = 0; while ($printrows[0][$x]) { ... print "Second: $rows[0][$x]\n"; $x++; }
my $x = 0; while ($printrows[$x][0]) { print "First: $rows[$x][0]\n"; print "Second: $rows[$x][1]\n"; }