How to list records for a query and to display \"no records\" when no rows returned using a single query?
Currently I am using a COUNT(*) query or using
COUNT(*)
why do you need another query after mysql_num_rows? why not to just run your query and then check results with mysql_num_rows?