cameeob2003 Posted June 21, 2006 Share Posted June 21, 2006 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 Link to comment https://forums.phpfreaks.com/topic/12502-verifying-same-passwords-on-register/ Share on other sites More sharing options...
realjumper Posted June 21, 2006 Share Posted June 21, 2006 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] Quote Link to comment https://forums.phpfreaks.com/topic/12502-verifying-same-passwords-on-register/#findComment-47874 Share on other sites More sharing options...
redarrow Posted June 21, 2006 Share Posted June 21, 2006 [!--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] Quote Link to comment https://forums.phpfreaks.com/topic/12502-verifying-same-passwords-on-register/#findComment-47875 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.