Hi Please could someone tell me if my syntax is correct here.
I want to make sure that if the word or phase that is search for is
in lower case, just in case there is a difference in the case of the text between the DB and the user request
$sql = "SELECT id, title,
MATCH(title,lower(body))
AGAINST ('$searchwords') AS score FROM mytable
WHERE MATCH(title,lower(body))
AGAINST ('$searchwords') ORDER BY score DESC";








Bookmarks