If i have a database containg username and pass where entries are inserted like this:
INSERT INTO `users` ( `user` , `pass` )
VALUES (
'user', PASSWORD( 'pass' )
);
How would i go about verifying this against a username and password used to log into something?
INSERT INTO `users` ( `user` , `pass` )
VALUES (
'user', PASSWORD( 'pass' )
);
How would i go about verifying this against a username and password used to log into something?