Skip to content

Instantly share code, notes, and snippets.

@tkjaergaard
Created May 10, 2012 11:41
Show Gist options
  • Select an option

  • Save tkjaergaard/2652561 to your computer and use it in GitHub Desktop.

Select an option

Save tkjaergaard/2652561 to your computer and use it in GitHub Desktop.
QuickPay2
<?php
require_once('quickpay.php');
$params = array(
'msgtype' => 'recurring',
'merchant' => 89898978,
'ordernumber' => '00002377010419105206',
'amount' => 400,
'currency' => 'DKK',
'autocapture' => 1,
'transaction' => '42339873',
'testmode' => 1,
'secret' => '29p61DveBZ79c3144LW61lVz1qrwk2gfAFCxPyi5sn49m3Y3IRK5M6SN5d8a68u7',
);
$qp = new QuickPay( $params );
print_r( $qp->commit() );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment