PHP Classes

File: examples/sim/sim.php

Recommend this page to a friend!
  Classes of John Conde   PHP Authorize.net Integration with JSON API   examples/sim/sim.php   Download  
File: examples/sim/sim.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Authorize.net Integration with JSON API
Process online payments with Authorize.net API
Author: By
Last change:
Date: 3 years ago
Size: 2,054 bytes
 

Contents

Class file image Download
<?php

/*
 * This file is part of the AuthnetJSON package.
 *
 * (c) John Conde <stymiee@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/*************************************************************************************************

Use the SIM tools to create a SIM transaction form

*************************************************************************************************/

namespace Authnetjson;

use
Exception;

require
'../../config.inc.php';

try {
   
$sim = AuthnetApiFactory::getSimHandler(
       
AUTHNET_LOGIN,
       
AUTHNET_SIGNATURE,
       
AuthnetApiFactory::USE_DEVELOPMENT_SERVER
   
);
   
$amount = 10.00;
   
$login = $sim->getLogin();
   
$url = $sim->getEndpoint();
   
$fingerprint = $sim->getFingerprint($amount);
   
$sequence = $sim->getSequence();
   
$timestamp = $sim->getTimestamp();
} catch (
Exception $e) {
    echo
$e;
    exit;
}
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <title>SIM (Deprecated)</title>
</head>
<body>
    <h1>
        SIM (Deprecated)
    </h1>
    <pre>
        Login: <?= $login ?><br>
        Endpoint: <?= $url ?><br>
        Hash: <?= $fingerprint ?><br>
        Sequence: <?= $sequence ?><br>
        Timestamp: <?= $timestamp ?>
</pre>
    <form method="post" action="<?= $url ?>">
        <input type='hidden' name='x_login' value='<?= $login ?>' />
        <input type='hidden' name='x_amount' value='<?= $amount ?>' />
        <input type='hidden' name='x_description' value='<?= 'Test Transaction' ?>' />
        <input type='hidden' name='x_invoice_num' value='<?= '123456789' ?>' />
        <input type='hidden' name='x_fp_sequence' value='<?= $sequence ?>' />
        <input type='hidden' name='x_fp_timestamp' value='<?= $timestamp ?>' />
        <input type='hidden' name='x_fp_hash' value='<?= $fingerprint ?>' />
        <input type='hidden' name='x_show_form' value='PAYMENT_FORM' />
        <input type='submit' value='Submit' />
    </form>
</body>
</html>