2017-06-28 31 views

回答

-2

I'会形容你的步骤,你将不得不代码它

1/ get the login info 
2/ do a select inside your database with the user info (select * from table where user = login AND password == password) 
3.1/ if you get 0 result, your user doesn't exist or he doesn't provide the valids information 
3.2/ if you get more than 1 result, you got a problem with your database (maybe your login isn't unique) 
3.3/ if you got only one result, your user exist with this information ! 

当然,你必须有存储与SHA1 +盐密码;)

相关问题