| 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/ |
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['TIAMembership']) ? $_POST['TIAMembership'] : 'No';
$SingleOccupancy = isset($_POST['SingleOccupancy']) ? (int)$_POST['SingleOccupancy'] : 0;
$DoubleOccupancy = isset($_POST['DoubleOccupancy']) ? $_POST['DoubleOccupancy'] : 0;
?>
<html>
<head>
<title>Payment Title</title>
</head>
<body onload="document.frm1.submit()">
<form action="https://globaltravelexchange.com/tourism-exchange-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="Organization" value="<?php echo $Organization; ?>" />
<input type="hidden" name="DietaryRestrictions" value="<?php echo $DietaryRestrictions; ?>" />
<input type="hidden" name="TIAMembership" value="<?php echo $TIAMembership; ?>" />
<input type="hidden" name="SingleOccupancy" value="<?php echo $SingleOccupancy; ?>" />
<input type="hidden" name="DoubleOccupancy" value="<?php echo $DoubleOccupancy; ?>" />
</form>
</body>
</html>
<?php
} else {
echo "Please use post method";
exit;
}
?>