I am using mysql and php. In my database I have this table called users, inside users table have a record:
username: admin
password: password
In my login page, I tried login as (password: password):
- username : ADMIN -> result : can login
- username : admin -> result : can login
I store the username in my database as "admin" all lowercase
In my php authentication page, I didnt include the strtolower() function. Does it mean, in php the username form field that I submitted is not case sensitive??