How do you check mysqli_numrows($result) for zero rows?
I tried a query in PHPmy admin for a single record, and it returned
Rows 0 - 0 1 total.
Did the same for a non existent record and it came up with Zero results (empty)
So it looks like you need to do some math to work out whow many rows there are, as it seems to return 0 when there is only one record and 0 when there are none.
How do you check mysql_inumrows($result) for zero rows returned?
Its possibly tied to the fact that record counts begin at 0.
H Walker
