Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Vagharshak Tozalakyan  >  CCValidator  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Sample
Class: CCValidator
Validate credit card numbers
Author: By
Last change:
Date: 2006-10-12 12:01
Size: 828 bytes
 

Contents

Class file image Download
<?php

  
require_once 'ccvalidator.class.php';

  
$ccv = new CCValidator('JOHN JOHNSON'CCV_AMERICAN_EXPRESS'378282246310005'32007);

  if (
$validCard $ccv->validate())
  {

    if (
$validCard CCV_RES_ERR_HOLDER)
    {
      echo 
'Card holder\'s name is missing or incorrect.<br />';
    }

    if (
$validCard CCV_RES_ERR_TYPE)
    {
      echo 
'Incorrect credit card type.<br />';
    }

    if (
$validCard CCV_RES_ERR_DATE)
    {
      echo 
'Incorrect expiration date.<br />';
    }

    if (
$validCard CCV_RES_ERR_FORMAT)
    {
      echo 
'Incorrect credit card number format.<br />';
    }

    if (
$validCard CCV_RES_ERR_NUMBER)
    {
      echo 
'Invalid credit card number.<br />';
    }

  }
  else
  {
    echo 
'Credit card information is valid.<br />';
  }

?>