ISN (International Social Networking Services - Interactive Apps and Websites)
An example of the cyberlib payment class - PHP Scripts
<?
require "cyberlib.phtml";
$transaction=new payment;
$transaction->type= "mauthonly";
$transaction->card_no= "4111111111111111";
$transaction->card_exp= "9%2f99";
$transaction->name= "Sherlock+Holmes";
$transaction->street= "221B+Baker+Street";
$transaction->city= "London";
$transaction->state= "England";
$transaction->zip= "NW1+6XE";
$transaction->country= "UK";
$transaction->merchant_secret= "secret-test-fdc";
$response=$transaction->send(time(), "0.24");
echo $response[ "MStatus"];
?>
|