| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/b2bzend/atoai/ |
Upload File : |
<?php
if ($_POST) {
$txnid = isset($_POST['txnid']) ? $_POST['txnid'] : 0;
$fullName = (isset($_POST['FullName']) && $_POST['FullName'] != '') ? trim($_POST['FullName']) : '';
$EmailId = isset($_POST['Email']) ? trim($_POST['Email']) : '';
$MobileNo = isset($_POST['Phone']) ? trim($_POST['Phone']) : '';
$Organization = isset($_POST['Organization']) ? $_POST['Organization'] : '';
$DietaryRestrictions = isset($_POST['DietaryRestrictions']) ? $_POST['DietaryRestrictions'] : '';
$TIAMembership = isset($_POST['ATOAIMembership']) ? $_POST['ATOAIMembership'] : 'No';
$SingleOccupancy = isset($_POST['SingleOccupancy']) ? (int)$_POST['SingleOccupancy'] : 0;
$DoubleOccupancy = isset($_POST['DoubleOccupancy']) ? $_POST['DoubleOccupancy'] : 0;
$FamSingleOccupancy = isset($_POST['FamSingleOccupancy']) ? $_POST['FamSingleOccupancy'] : 0;
$FamDoubleOccupancy = isset($_POST['FamDoubleOccupancy']) ? (int)$_POST['FamDoubleOccupancy'] : 0;
$Noofday = isset($_POST['Noofday']) ? $_POST['Noofday'] : 0;
$amount = isset($_POST['amount']) ? $_POST['amount'] : 0;
$returnUrl = isset($_POST['returnUrl']) ? $_POST['returnUrl'] : '';
?>
<html>
<head>
<title>Payment Title</title>
</head>
<body onload="document.frm1.submit()">
<form action="https://globaltravelexchange.com/atoai/atoai-payment-step.php" name="frm1" method="post">
<input type="hidden" name="FullName" value="<?php echo $fullName; ?>" />
<input type="hidden" name="txnid" value="<?php echo $txnid; ?>" />
<input type="hidden" name="Email" value="<?php echo $EmailId; ?>" />
<input type="hidden" name="Phone" value="<?php echo $MobileNo; ?>" />
<input type="hidden" name="amount" value="<?php echo $amount; ?>" />
<input type="hidden" name="Organization" value="<?php echo $Organization; ?>" />
<input type="hidden" name="DietaryRestrictions" value="<?php echo $DietaryRestrictions; ?>" />
<input type="hidden" name="ATOAIMembership" value="<?php echo $TIAMembership; ?>" />
<input type="hidden" name="SingleOccupancy" value="<?php echo $SingleOccupancy; ?>" />
<input type="hidden" name="DoubleOccupancy" value="<?php echo $DoubleOccupancy; ?>" />
<input type="hidden" name="FamSingleOccupancy" value="<?php echo $FamSingleOccupancy; ?>" />
<input type="hidden" name="FamDoubleOccupancy" value="<?php echo $FamDoubleOccupancy; ?>" />
<input type="hidden" name="Noofday" value="<?php echo $Noofday; ?>" />
<input type="hidden" name="returnUrl" value="<?php echo $returnUrl; ?>" />
</form>
</body>
</html>
<?php
} else {
echo "Please use post method";
exit;
}
?>