SyntaxFix
Write A Post
Hire A Developer
Questions
For compare hashed password with the plain text password string you can use the PHP password_verify
if(password_verify('1234567', $crypt_password_string)) { // in case if "$crypt_password_string" actually hides "1234567" }