in reply to Re: Trouble with accessing MS Access database via Perl on web host........
in thread Trouble with accessing MS Access database via Perl on web host........
That would seem to emulate the rest of the functionality of your code except it doesn't output in HTML, have a look at something like HTML::Template for that.my $sth = $dbh->prepare("SELECT email, password FROM surya"); $sth->execute; my $aref = $sth->fetchall_arrayref; $sth->finish; print "Email\tPassword\n"; for my $row (@$aref) { print join("\t",@$row) . "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Trouble with accessing MS Access database via Perl on web host........
by Anonymous Monk on Jul 24, 2002 at 09:15 UTC |