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.

I get the following syntax error

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 '* ,MATCH(city) AGAINST ('""' IN BOOLEAN MODE) FROM `` WHERE MATCH(city) AGAINST ' at line 1

The corresponding code for this error is the following:

$sql = mysql_query("SELECT $s.* ,MATCH(city) AGAINST ('\"$c\"' IN BOOLEAN MODE) FROM `$s` WHERE MATCH(city) AGAINST ('\"$c\"' IN BOOLEAN MODE )  Group by company ASC") or die (mysql_error()); 

Is it possible to tell me what is the error on the query? I don't have enought MySQL experience.

Thanks

share|improve this question
2  
Easiest way to identify the problem is to display the actual query string. What do $s and $c contain? – Mark Baker Oct 22 '10 at 12:37
ya, please show the actual output of $sql variable – g.b.1981 Oct 22 '10 at 12:41
Hi man what about this FROM '$s' try putting FROM $s – Alejandro Oct 22 '10 at 16:22
thanks all for your answers – Sotiris Oct 22 '10 at 22:50

3 Answers

up vote 4 down vote accepted

Looks like your variables $s and $c don't have values.

share|improve this answer

$s seems to be empty - as you can see in the error message ("[...] FROM `` WHERE [...]")

EDIT: $c is empty, too.

share|improve this answer

Try echoing the string that you're putting into the mysql_query function, and post the results.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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