Ok so trying to build a good search script for my sites articles... doing well so far even though I am stuck near the end but I have a question... is it good to use Boolean full-text searching or not? What do you guys think?
Also, I keep getting this error in a query:
SELECT id, DATE_FORMAT(timestamp,'%m/%d/%Y at %l:%i:%s %p') AS datetime, title, article FROM news WHERE MATCH (title) AGAINST ('star' IN BOOLEAN MODE) ORDER BY timestamp DESC LIMIT -25, 25
The error is:
You have an error in your SQL syntax near 'BOOLEAN MODE) ORDER BY timestamp DESC LIMIT -25, 25' at line 1
any ideas?