How do you do a case insensitive search in MySQL?
I am using this code
$query ="SELECT * FROM Database WHERE Username='" . $HTTP_POST_VARS[username] . "'" ;
As it stands if the user enters in Joe it will not match something like joe or JOE with the select.
Any help would be appreciated