Hi,
How would I check if there were no rows returned by the query?
If I use the following:
Code:
if (dbi_num_rows(result_var) > 0)
I get this error:
Code:
Invalid DBI result handle 0
And If I use this:
Code:
if (dbi_query(db_var, query_var) == 0)
I get a tag mismatch warning.
Thanks in advance.