quasiman Posted January 7, 2013 Share Posted January 7, 2013 (edited) 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.... Edited January 7, 2013 by quasiman Quote Link to comment https://forums.phpfreaks.com/topic/272816-validform-builder-matchwith/ 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.