Hello AJDIN,
Monday, August 06, 2001, 3:34:49 PM, you wrote:
AB> Hi
AB> I'm trying to get number of rows from a query. All works fine until
AB> the result is 0. Then query executes fine, returns 0 rows but mysql_numrows
AB> failes.
AB> $query="select * from mytable";
AB> $result=mysql_query($query) or die("select failed");
AB> $num_rows=mysql_numrows($result) or die("select count failed");
do it like this:
$num_rows=@mysql_numrows($result) or die("select count failed");
^
if you give there this character it don't give you a error.
I hope it helps
--
Best regards,
Daniel mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]