payment.php 674 Bytes
<html>
	<head>
		<title>Merchant Checkout Page</title>
	</head>

	<body>
		<center><h1 style="margin-top: 20%">Please do not refresh this page...</h1></center>
		<form action="<?= $rUrl ?>" method="post" id="BayanPay_online_payment">
			<input type="hidden" name="MerchantID" value="<?php echo $mId; ?>">
			<input type="hidden" name="CollaboratorID" value="<?php echo $colabId; ?>">
			<input type="hidden" name="requestParameter" value="<?= $requestParam ?>">
		</form>
		<script type="text/javascript">
			document.addEventListener("DOMContentLoaded", function(event) { 
				document.getElementById("BayanPay_online_payment").submit();
			});
		</script>
	</body>
</html>