my $res = $dbh->selectall_arrayref('select * from table'); foreach my $row (@$res) { print join(',', @$row), "\n"; } # html-table style print "\n"; foreach my $row (@$res) { print "\t\n"; print map { "\t\t\n" } @$row; print "\t\n"; } print "
$_
\n";