[insert_php]
if(isset($_GET[‘webxpay’])){
$status = $_GET[‘status’];
$order_id = $_GET[‘unidue’];
if($status == ‘0’)
{
$tmassage = ‘
Payment Unsuccessful.
Sorry we could not process your payment for order reference #’.$order_id.’
Please Try Again
‘;
}else if($status == ‘1’)
{
$tmassage = ‘
Your payment was processed successfully!
Thank you for your payment. Your order reference number is:’.$order_id.’
‘;
}
echo $tmassage;
}
[/insert_php]