Have a really simpel wildcars search:
"SELECT firstname, lastname, email, text FROM members WHERE firstname LIKE '%$word%' OR lastname LIKE '%$word%' OR email LIKE '%$word%' OR text LIKE '%$word%'"
If I search for "test" it finds the words "test" but not "Test", how do i fix this? The weird thing is that in other another db it finds the words "Test" and "test", they are bout running "latin1_swedish_ci".
I thought the "COLLATE" statement would help, but i could not get it to work :(