quasiman Posted January 7, 2013 Share Posted January 7, 2013 Does anyone here know ValidForm? I'm trying to use the (fairly new) validation rule matchwith for password confirmation, but it's acting like nothing is wrong when I type in different passwords. Here's what I've tried so far.... // First password field $objForm->addField("password1","Password", VFORM_PASSWORD, array( "required" => true ), array( "required" => "Please fill in a password" ) ); // Second password field $objForm->addField("password2","Repeat password", VFORM_PASSWORD, array( "required" => true, "matchwith" => $objForm->getValidField("password1")->getValue() ), array( "type" => "Your passwords don't match", "required" => "Please retype your password" ) ); There's no documentation yet on this validation, so I'm not sure how it should be implemented.... Link to comment https://forums.phpfreaks.com/topic/272816-validform-builder-matchwith/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.