Jump to content

validform builder matchWith


quasiman

Recommended Posts

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

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.