Joined
·
3,483 Posts
So I have a piece of code i wrote that doesn't seem to be working correctly.
It is a registration system and is just doing a bit of verification at the moment.
Here are the steps it should go through:
Here is the code
Code:
[/CODE]
+REP to helpers
It is a registration system and is just doing a bit of verification at the moment.
Here are the steps it should go through:
- Show registration form
- IF passwords and email address are the same - echo "Thanks"
- IF passwords and email address's are NOT the same - Say "mismatch..."
Here is the code
Code:
Code:
[CODE]
if (isset($_POST['submit'])) {
if ($password == $password2 && $email == $email2) {
echo "Thanks"; }
else {
echo "Password and/or Email Address Mismatch. Please try again";
}
}
+REP to helpers