I need to validate pan number and bank account number fields. How can I do that using php? I have to implement this validation in civicrm custom form. civicrm has any built in function for these two validations. Kinldy help me.

link|improve this question

pan= "permanent account number" in india? There's far too many TLAs these days... – Marc B Feb 11 '11 at 14:41
Do you mean 'validate' as in "make sure it's formatted correctly" or validate as in "check with the bank to make sure the account is legitimate". The former is merely difficult. – anschauung Feb 11 '11 at 22:41
feedback

1 Answer

up vote 0 down vote accepted

Pan number validation regular expression

if (!preg_match("/^([a-zA-Z]){5}([0-9]){4}([a-zA-Z]){1}?$/", $pannumber)) { echo "Invalid pan number"; }

link|improve this answer
This validates the alphanumeric structure of the PAN. But there is more. The last character of the first set of characters need to be the initial character of the last name of the account holder. – Kangkan Jul 5 '11 at 7:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.