sir i have problem on php mysql login
On my db:
username = admin
password = addbcea06efdd20f934b35e3b2111e55
1st i test This the query on mysql
SELECT COUNT(`user_id`) FROM `users` WHERE `username` = 'admin' AND `password` = 'addbcea06efdd20f934b35e3b2111e55'
the 1st result is 1
but when i my second test
SELECT COUNT(`user_id`) FROM `users` WHERE `username` = 'Admin' AND `password` = 'addbcea06efdd20f934b35e3b2111e55'
why the result keep 1? This should be 0. I only change the username to capital letter. What should i do?