Topic: MySQL problem (Full text searching)
Ok... I have this statement...
SELECT * FROM cache WHERE MATCH(keywords) AGAINST ('".$searchString."*' IN BOOLEAN MODE) ORDER BY ref ASC
I have two questions...
1) how do I ORDER BY relevance?
2) how do I multi search... explained below....?
Basically once they have entered one word they get the results from above. Now what I need... If the enter a second word, I want that searching only the results from above.
Make sense?