Howdy, I just have a small problem with my forms. I have 2 passwords fields for people to verify their password. I put this code near the top of the page that is processed by the 'submit' button:
if ($password != $vpassword)
{
print "<p><font size=\"3\" face=\"Verdana, Arial\" color=\"#FF0000\"><b>Passwords must match!</b></font></p>";
exit;
}
But it displays all the time, even if the passwords do or don't match. Any ideas?