Hi, everyone, I have a PHP-MySql statements like this:
$query="select count(*) from table1"; $result=mysql_query($query); $count=mysql_result($result,0,0);
How can I get the $count using Perl-MySql language?
Thank you in advance.
Rong