I get this mysql error message when using a particular SQL statement:
'Query was empty'
and error num. 1065
So I echo the SQL statment and copy it into MySQL manually. This in turn returns something. I.e. no error.
What does the error message mean?
------- This is the code I use -------
$extras_query = "SELECT orderable_extras FROM product_extras WHERE extrasID = $extra_products";
$extras_result = mysql_query($query_prospect,$mysql_link)
$fetch_extras = mysql_fetch_array($extras_result);
[ I use error handler, but they are not shown here ]