I am getting this warning
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/www/tacit-design/trade/singleSearch.php on line 36
form the following code:
....
// query table
LINE 34: $query = "SELECT * FROM listings WHERE MATCH $trading OR wac_1 OR wac_2 AGAINST $searchValue";
LINE 35: $result = mysql_query($query);
LINE 36: $rowsFound = mysql_num_rows($result);
// if the query has results ...
if($rowsFound > 0){
...
and no results are found no matter the $search value
Can u see any problems with the code?