This is my current query
WHERE Keywords.Word = '$search'
But this only works if $search is one word, if its two or three words then it won’t find anything as my keywords table words field only has one word per record.
Whats the quickest way to do this ?
Depends on your programming language, split the search term into an array, and use the
INclause :