Doesn't seem to help. If I do it all in one text file it works, like:
$password = 'hello';
$vpassword = 'hello';
if($password !== $vpassword)
{
print "<p><b>Passwords Must Match!</b></p>";
exit;
}
So I guess the form has something to do with it. Although, I also have the code:
if (!trim($password))
{
print "<p>The password cannot be left blank</p>";
exit;
And that seems to work fine, so I guess I'll just look into it some more.
}