I am trying to get a database call to show a statement saying no results found if there are no results returned.
How would I go about doing this to my code:-
if ( ! mysql_num_rows($getFixtures)) { echo 'No results found.'; } else { ... }