Monday, 24 June 2013

RETRIEVAL OF INFORMATION



Aim: Use Perl to set up and retrieve information from cookies.
use DBI;

$dbh=DBI->connect('DBI:mysql:manju:localhost','root','');
$query="select * from tab";
$sqlquery=$dbh->prepare($query);
$sqlquery->execute();
while(@row= $sqlquery->fetchrow_array())
{
# print your table rows
print "@row\n";

}

No comments:

Post a Comment