nblackwood Posted September 6, 2009 Share Posted September 6, 2009 how would i validate password field #1 against password field #2 and then show an error if not the same or continue if correct? Link to comment https://forums.phpfreaks.com/topic/173306-solved-password-validation/ Share on other sites More sharing options...
Mark Baker Posted September 6, 2009 Share Posted September 6, 2009 if ($passwordField1 != $passwordField2) { ... show error } else { ... continue with main code } Link to comment https://forums.phpfreaks.com/topic/173306-solved-password-validation/#findComment-913533 Share on other sites More sharing options...
nblackwood Posted September 6, 2009 Author Share Posted September 6, 2009 thank you Link to comment https://forums.phpfreaks.com/topic/173306-solved-password-validation/#findComment-913534 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.