Hi all
I am a bit of a mysql beginner trying to tweak a search engine.
I want my searches to be case-insensitive, but MySQL seems to want to do sensitive matching only. How can I force it to do the former?
I am using a statement of the form
SELECT blah FROM blah WHERE blah IN ($querywords)
where $querywords is an array holding the words the user typed in the search box.