I have webforms in my drupal 7 website. What I want is to validate my webform fields. The webform contains a phone field which should accept numeric field and should contain 10 numbers only. Is there any module for this or will I have to code for this.
Share
Use
hook_form_alter()to apply custom validation in drupalcreate module e.g. mymodule
file mymodule.module
If you want to more to detail how to use
hook_form_alter()visit this link http://www.codeinsects.com/drupal-hook-system-part-2.html