0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.147.27.154


Current Path : /var/www/html/kusdde/adm/lib/
Upload File :
Current File : /var/www/html/kusdde/adm/lib/pgRedirect.php

<?php
header("Pragma: no-cache");
header("Cache-Control: no-cache");
header("Expires: 0");
// following files need to be included
require_once("./lib/config_paytm.php");
require_once("./lib/encdec_paytm.php");

$servername = "72.167.46.92";
$username = "kususer";
$password = "Logisys@2106";
$dbname = "resultsg_kus";
$conn = new mysqli($servername, $username, $password, $dbname);


	
$checkSum = "";
$paramList = array();
$appno = $_REQUEST['productinfo'];

$get_data ="select fname, appno, a.fregno, sum(famount) as ftotalfee from res_stud a, student s 
		where s.FREGNO = a.fregno and appno='{$appno}'
		group by fregno,appno";

var_dump($get_data);		
$result=$conn->query($get_data); 

if (mysqli_num_rows($result) > 0) 
{
	// output data of each row
	while($row = mysqli_fetch_assoc($result)) 
	{
		$fregno    =    $row['fregno'];
		$ftotalfee =    $row['ftotalfee'];
	}
}

//var_dump($appno);var_dump($fregno);die();
$ORDER_ID = $appno; //$_POST["ORDER_ID"];
$CUST_ID = $fregno; //$_POST["CUST_ID"];
$INDUSTRY_TYPE_ID = 'EducationGovernment'; //$_POST["INDUSTRY_TYPE_ID"];
$CHANNEL_ID = 'WEB';//$_POST["CHANNEL_ID"];
$TXN_AMOUNT = $ftotalfee;//$_POST["TXN_AMOUNT"];

// Create an array having all required parameters for creating checksum.
$paramList["MID"] = PAYTM_MERCHANT_MID;
$paramList["ORDER_ID"] = $ORDER_ID;
$paramList["CUST_ID"] = $CUST_ID;
$paramList["INDUSTRY_TYPE_ID"] = $INDUSTRY_TYPE_ID;
$paramList["CHANNEL_ID"] = $CHANNEL_ID;
$paramList["TXN_AMOUNT"] = $TXN_AMOUNT;
$paramList["WEBSITE"] = PAYTM_MERCHANT_WEBSITE;
$paramList["CALLBACK_URL"] = "http://logisys.net.in/results/kus/pgResponse.php";

/*
$paramList["MSISDN"] = $MSISDN; //Mobile number of customer
$paramList["EMAIL"] = $EMAIL; //Email ID of customer
$paramList["VERIFIED_BY"] = "EMAIL"; //
$paramList["IS_USER_VERIFIED"] = "YES"; //

*/

//Here checksum string will return by getChecksumFromArray() function.
$checkSum = getChecksumFromArray($paramList,PAYTM_MERCHANT_KEY);

?>
<html>
<head>
<title>Merchant Check Out Page</title>
</head>
<body>
	<center><h1>Please do not refresh this page...</h1></center>
		<form method="post" action="<?php echo PAYTM_TXN_URL ?>" name="f1">
		<table border="1">
			<tbody>
			<?php
			foreach($paramList as $name => $value) {
				echo '<input type="hidden" name="' . $name .'" value="' . $value . '">';
			}
			?>
			<input type="hidden" name="CHECKSUMHASH" value="<?php echo $checkSum ?>">
			</tbody>
		</table>
		<script type="text/javascript">
			document.f1.submit();
		</script>
	</form>
</body>
</html>