http://qs321.pair.com?node_id=469386


in reply to Re^2: Perl and DBI and CGI
in thread Perl and DBI and CGI

Hi! Check if this is helps...
$query = "SELECT Name, Email FROM users"; $sth = $dbh->prepare($query); $sth->execute(); while($Name,$Email) = $sth->fetchrow_array){ print "$Name, $Email";} $sth->finish(); $dbh->disconnect;