Sep 3rd, 2010, 9:18 AM
Hi Bwaye,
Thanks for the tip about that tutorial. I'll fix it up right now.
Regarding your code, I don't see any syntax errors. What happens exactly? Do you get any javascript errors? Does the form just submit without doing any validation?
Oh, one thing does look a little fishy: are both of these rules needed? If a rule references a non-existent field, it may well choke.
- Ben
Thanks for the tip about that tutorial. I'll fix it up right now.
Regarding your code, I don't see any syntax errors. What happens exactly? Do you get any javascript errors? Does the form just submit without doing any validation?
Oh, one thing does look a little fishy: are both of these rules needed? If a rule references a non-existent field, it may well choke.
Code:
rules.push("same_as,email,email2,Please Check your Email Address.");
...
rules.push("same_as,email,email_database2,Please Check your Email Address.");
- Ben