Hi again users!
I have another problem.
I´m implementing a small search engine to a news section in my website.
I send this query to get the results:
SELECT * FROM sites WHERE activo = '1' AND MATCH (title, text) AGAINST ('$query')
and I get the results with no problem.
But how do I get them ordered by relevancy, I mean, how do I order by the number of occurencies found in earch row without having to use php or other script?