Jump to content

Verifying Same Passwords on Register


cameeob2003

Recommended Posts

I think the following is correct but I haven't tested it.....

[code]
<?php
if (isset($_POST['submit']))
{
$password = $_POST["password"];
$cpassword = $_POST["cpassword"];

//Do the passwords match?
if($password!==$cpassword)
{

echo "Passwords do not match";
exit();
}

else
{
echo "Passwords match - yipee ";
}
}
?>

<form action="" method="POST" name="form1">

Password : <input type="password" size="30" maxlength="40" name="password">
Confirm Password <input type="password" size="30" maxlength="40" name="cpassword">
<input type="submit" value="Submit">

</form>
[/code]
[!--quoteo(post=386227:date=Jun 21 2006, 01:33 AM:name=cameeob2003)--][div class=\'quotetop\']QUOTE(cameeob2003 @ Jun 21 2006, 01:33 AM) [snapback]386227[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Im kinda new to the entire php programming thing and was wondering what commands line(s) i would use to make sure that when someone enters in a password to reg they enter it twice and then the php script verifies that the 2 passwords are the same.

Any help is appreciated.
[/quote]

dont know if that helps as i am learning aswell
[code]
<?

if(!$first_password==$secound_password) {

do somethink

}else{

echo " sorry first and secound password must match";

}

?>
[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.