Hi,
My search query will not return any records when i search for words that are entered into my database with a capital letter.
The problem seems to be that i am searching in 3 different database fields and only one field returns records containing a capital letter.
here is the an example of the code:
$qeury = SELECT * FROM table WHERE LOWER(field_1) OR LOWER(field_2) OR LOWER(field_3) LIKE '%$search%' ORDER BY date
The search works well on field_1.
When i enter a search that i know is in one of the other fields and contains a capital letter then there is no match.
field_2 and field_3 are not converted to lower-case for some reason.
Your help will be greatly appreciated!