PHP code example of ihatehandles / paynow

1. Go to this page and download the library: Download ihatehandles/paynow library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ihatehandles / paynow example snippets




owIntegrationId = 123456;
$paynowIntegrationKey = 'abcdef';

$p = new Paynow\Paynow($paynowIntegrationId, $paynowIntegrationKey);

$reference = '123';
$amount = 10.00;
$additionalInfo = 'Payment for order '.$reference;
$returnUrl = 'http://example.com/thankyou';
$resultUrl = 'http://example.com/result';

$res = $p->initiatePayment(
	$reference,
	$amount,
	$additionalInfo,
	$returnUrl,
	$resultUrl
);

echo "<a href='".$res->browserurl."'>Make payment</a>";



owIntegrationId = 123456;
$paynowIntegrationKey = 'abcdef';

$p = new Paynow\Paynow($paynowIntegrationId, $paynowIntegrationKey);

//Method verifies status update hash, and polls Paynow to make sure
$transactionDetails = $p->processStatusUpdate($_POST);

if ($transactionDetails->status !== 'Paid') return;

//ToDo: Code to finish customer purchase, and maybe check if the transaction hasn't already been processed