I want this registration script to inform the user when the passwords entered do not match.
and I use this code:
if ($_POST['pass' != 'pass2'])
{
echo
("Oops! Password did not match! Try again. ");
}
please help me fix my encoding. :-( Thank you very much!
source
share