formbuilder form validation
Posted: Mon Aug 24, 2015 8:57 pm
Hi guys,
i am trying to use the formvalidation in formbuilder but I do something wrong.
cmsms 1.11.11
Formbuilder 0.8.1.1
PHP 5.4.35
textfield (fld_31)
fieldvalidation - numeric
UDT
I would be very gratefull if someone could tell me what I am doing wrong for it never validates. I just want to check whether the number 12 is entered in the field.
Love,
Candy
i am trying to use the formvalidation in formbuilder but I do something wrong.
cmsms 1.11.11
Formbuilder 0.8.1.1
PHP 5.4.35
textfield (fld_31)
fieldvalidation - numeric
UDT
Code: Select all
if ($fld_31 = 12) $errors=false;
if ($errors = true) {
return Array(false, "<strong>Nicht die richtige Wert eingegeben</strong>");
} else {return Array(true,'');}Love,
Candy