at the moment, i check the username and passwort of a HTML form like this on my database:
$exc = $dbh->prepare("SELECT id, cid, fullname FROM user WHERE username LIKE :username AND password LIKE :password");
I need to check both CASE SENSITIVE when executing the query.
Database data:
username: louis
password: goal43
Form data:
username: LOUIS
password: GOAL43
returns true - how do i fix this ?