Answers for "how to check confirm password in php"

PHP
-1

how to check confirm password in php

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

Code answers related to "how to check confirm password in php"

Browse Popular Code Answers by Language