Hello,
I'm currently trying to perform a search over 2 fields in my MySQL table (text type) using PHP.
SELECT * FROM content_items WHERE MATCH (content,name) AGAINST ('".urldecode($_REQUEST['term'])."' IN BOOLEAN MODE)
I'm always getting zero results, no matter what I search for (even tried to make the query static and it still didn't work). I have Fulltext indexes on both fields.
What can cause this?
Thanks,
Roy
p.s
The search should fit any length of sting (even short ones)