Validation Not Working

lwatkins 03 Jun, 2009
I set-up a form and set-up validation. I ended up with some php errors, but the validation actually worked. Because of the errors that were showing I started over. Deleted the form, dropped the database, and started 100% over. The new form now works, doesn't show any errors, but the validation isn't working.

I checked the the form operates the same with or without the template so it isn't a template conflict.

What else should I check?

http://yoursuccesstools.com/starz/index.php?option=com_chronocontact&chronoformname=SummerCamp2009
GreyHead 06 Jun, 2009
Hi lwatkins,

In your form html you have
name="text_FirstName." 
That full-stop is illegal - field names can only include letters, numbers and a few special characters - for safety assume 'a-zA-Z0-9_' are all. The stop is breaking the validation JavaScript.

Please change that to
name="text_FirstName" 
and check the other fields too.

Bob
This topic is locked and no more replies can be posted.