Login   Register  
PHP Classes
elePHPant
Icontem

File: exampleTStatus.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Vinay Yadav  >  skipjack  >  exampleTStatus.php  >  Download  
File: exampleTStatus.php
Role: Example script
Content type: text/plain
Description: Transaction Status Example Script
Class: skipjack
Skipjack payment transaction handling class.
Author: By
Last change:
Date: 2003-09-01 11:17
Size: 626 bytes
 

Contents

Class file image Download
<?php
  
/**
  * Queries skipjack payment gateway for Transaction status.
  *
  *  Transaction status
  *
  */
  
require("SkipJack.php");

  
$sk = new SkipJack;

  
$sk->Debug 1;

  
/**
  *  Check Transaction Status
  */
  
$checkStatusArray = array(
                            
"szSerialNumber"=>"000894011005",
                            
"szDeveloperSerialNumber" => "100904756282",
                            
"szOrderNumber"=>"123",
                            
"szDate"=>""
                            
);

  
$statusArr $sk->checkTransStatus($checkStatusArray);

  
print_r($statusArr);

  
//$sk->changeTransStatus();

?>