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(*)
Try Something like following
if (mysql_num_rows == '0') 'No Records' else //YOUE CODE HERE