Answers for "password validity in php"

PHP
0

how to check confirm password in php

if ($_POST["password"] === $_POST["confirm_password"]) {
   // success!
}
else {
   // failed :(
}
Posted by: Guest on January-11-2021
-1

php check if passwords match

if ($password == $confirmPassword)
Posted by: Guest on March-08-2021

Browse Popular Code Answers by Language