|
|
 |
Credit Card Validation Script |
 |
| |
|
|
 |
Credit Card Validation |
 |
| |
A PHP function for validating a credit card number. Works for Visa, Mastercard, American Express and Discover.
The function returns a 4-element array:
- Credit Card type: Visa || Mastercard || American Express || Discover || Unknown
- Numeric: Card number is all digits: True || False
- Valid Length: Card number has correct number of digits for the type: True || False
- Message: Result of the function: {Error Message} || OK
Pass a credit card number into the function to get the informational array:
$cardinfo = cardtype($cardnum);
|
|
 |
|
 |
| |
|
|
|