When I run this query `
SELECT
idFROMbckoffWHEREleft= 3;
` in phpmyAdmin, I get the correct response
MySQL returned an empty result set (i.e. zero rows).
However, when I run the same query through my PHP code using mysql_query('the above query').. then I get "Resource ID#5" or "Resource ID#6" and so on..
How do I get the empty result set (or zero rows) in PHP ?
