Use password_hash and verify - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Use password_hash and verify (/showthread.php?tid=78431) |
Use password_hash and verify - splitX26 - 01-19-2021 I am trying to create a register function using password_hash(), and I try to use password_verify for my login function. Currently my register function works well, my password is hashed in my phpmyadmin database but my error comes from my login function. I have a verify_user in my controller Code: function verify_user(){ Code: $user_details = $this->login_model->verify_user($email,$password); Code: function verify_user($email,$password) RE: Use password_hash and verify - paulbalandan - 01-19-2021 PHP Code: // model RE: Use password_hash and verify - splitX26 - 01-19-2021 Thanks for your answer but my controller still return me : 'Email or Password is wrong.' RE: Use password_hash and verify - InsiteFX - 01-19-2021 Read this article first. Implementing Secure User Authentication in PHP Applications with Long-Term Persistence (Login with "Remember Me" Cookies) The best example that I have seen is how Myth/Auth does it, it uses the above type coding. |