Hi

I'm trying to get number of rows from a query. All works fine until 
the result is 0.  Then query executes fine, returns 0 rows but mysql_numrows 
failes.

$query="select * from mytable";
$result=mysql_query($query) or die("select failed");
$num_rows=mysql_numrows($result) or die("select count failed");

Displays "selec count failed" but it should just return 0 so $numrows=0.

If "or die" bit is removed, then all works fine.

Any way around this problem?


Regards

Ajdin

-- 
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]

Reply via email to