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/ */
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
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.