Current File : /home/inlingua/public_html/faridabad/icentex/inlingua_payment/payment_request.php
<?php session_start();

$txnResult = isset($_GET['ResResult']) ? $_GET['ResResult'] : '';
$txnTrackID= isset($_GET['ResTrackId']) ? $_GET['ResTrackId'] : '';
$txnPaymentID = isset($_GET['ResPaymentId']) ? $_GET['ResPaymentId'] : '';
$txnRef= isset($_GET['ResRef']) ? $_GET['ResRef'] : '';
$txnTranID = isset($_GET['ResTranId']) ? $_GET['ResTranId'] : '';
$txnAmount= isset($_GET['ResAmount']) ? $_GET['ResAmount'] : '';
$txnError = isset($_GET['ResError']) ? $_GET['ResError'] : '';
$date=date("Y-m-d H:i:s");

$url=
'http://inlinguanewdelhi.in/icentex/inlingua_payment/pay_receipt.php?ResResult='.$txnResult.'&ResTrackId='.$txnTrackID.'&ResAmount='.$txnAmount.'&ResPaymentId='.$txnPaymentID.'&ResRef='.$txnRef.'&ResTranId='.$txnTranID.'&ResError='.$txnError;


header("location:". $url );

exit;

?>