my $i;
# output column headers
foreach $i(@field_desc) {
print "
$i | \n";
}
print qq ``;
my $sth = $dbh->prepare($SQL);
$sth->execute() or die $dbh->errstr;
my $row;
foreach $row ( $sth->fetchrow_arrayref )# while more rows fetch next one
{
print "";
foreach my $cell (@$row) {
print "| $cell | ";
}
print "
";
}
print "";
print $q->end_html;
$dbh->disconnect() or die $dbh->errstr;