FUNCTION CheckExpirationDate(value$)
Function to check if Credit Card expiration date.
|
Parameter | Description |
value$ |
[input, string] Credit Card expiration date to be checked. |
|
Returns |
[boolean] Failure if card has expired, Warning if close to expiring or Success. |
|
FUNCTION LOCAL DetermineCardType$(rawCard$)
Determine Card Type from card number.
|
Parameter | Description |
rawCard$ |
[input, string] The unencrypted credit card number. |
|
Returns |
cardType$ [string] String value representing card type (i.e. 4 = Visa) |
|