I am trying to give an email field a value gathered from the database, but it’s not working as a $meta entry and there no documentation on how to set the value:
//*** Special e-mail address validation
$objForm->addField("paypal_id","Paypal Account", VFORM_EMAIL,
array("required" => false),
array("type" => "This is not a valid e-mail address!"),
array("tip" => "Your paypal account email address", "value"=>"test") //not working
);
Anyone have any experience with this class?
Used default instead of value in the $meta array