Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Warning: mysql_num_rows() expects parameter 1 to be resource,

I'm new in this forum. I'm building a search within my site. I have a problem with the DB. It's giving me this:

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\Program Files (x86)\EasyPHP-5.3.5.0\www\searchscript\search.php on line 86

I'll show you the code section where it gives me such error

line 82: $query = "SELECT * FROM dreams WHERE titolo,titch LIKE \"%$trimmed%\" ORDER BY id_dreams DESC "; 
line 85: $numresults=mysql_query($query);
line 86: $numrows=mysql_num_rows($numresults); //error

Now I tried to see what is the problem behind the query and it's telling me this:

SELECT * FROM dreams WHERE titolo, titch LIKE "%tags%" ORDER BY id_dreams DESC

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'titch LIKE "%tags%" ORDER BY id_dreams DESC' at line 1

The code behind this is:

$query = "SELECT * FROM dreams WHERE titolo, titch LIKE \"%$trimmed%\" ORDER BY id_dreams DESC "; $result = mysql_query($query) or die($query."

".mysql_error());

share|improve this question
have you tried your query manually..? is it working good ?? – Chandresh Oct 14 '11 at 10:37
2  
Sick and tired of these questions. There are a million duplicates. Perform a search next time or just bother to look a little to the right, where they're all listed for you. – Lightness Races in Orbit Oct 14 '11 at 10:38

marked as duplicate by Lightness Races in Orbit, Book Of Zeus, Damien Pirsy, Maerlyn, Paul Dixon Oct 14 '11 at 11:31

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

The mysql_query is returning a boolean value meaning the sql query is probably failing and you're getting a false returned rather than a mysql resource.

Have you checked your query?

share|improve this answer
1  
My problem is that the query is working when I perform it for one single field, though it returns me a boolean result and therefore False if I perform the search on 2 fields. – Simone Serafini Oct 14 '11 at 10:59

You forgot to check whether $num_results is a MySQL result resource. In this case your query errored, so it's FALSE instead.

Re-read the documentation for mysql_query and ensure you program for all possible cases.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.