Sorry been out of commision for a few months.
Got a newbe question.
What value is returned from an sql query that returns no rows?
Example:
$a = "SELECT * FROM a WHERE b = c";
$b = my_sql_query($a);
Note:
Table Name - a
Table Field - b
Table Field Value - c
Question:
In the table there is no value of c and hence nothing is returned
What is the value of $b?
Thanks, Regards X
PS: I am assuming 0 or NULL but nothing seems to be working, thanks.