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 : 18.218.1.38


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

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
    <title>Addmission Panel</title>
    <!-- Favicon-->
    <link rel="icon" href="favicon.ico" type="image/x-icon">

    <!-- Google Fonts -->
    <link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
    <link href="plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
    <!-- Bootstrap Core Css -->
    <link href="plugins/bootstrap/css/bootstrap.css" rel="stylesheet">

    <!-- Waves Effect Css -->
    <link href="plugins/node-waves/waves.css" rel="stylesheet" />

    <!-- Animation Css -->
    <link href="plugins/animate-css/animate.css" rel="stylesheet" />

    <!-- Wait Me Css -->
   <link href="plugins/waitme/waitMe.css" rel="stylesheet" />
   <link href="plugins/sweetalert/sweetalert.css" rel="stylesheet" />

   <link href="plugins/dropzone/dropzone.css" rel="stylesheet">
    <!-- Custom Css -->
    <link href="css/style.css" rel="stylesheet">

    <!-- AdminBSB Themes. You can choose a theme from css/themes instead of get all themes -->
    <link href="css/themes/all-themes.css" rel="stylesheet" />
</head>

<body class="theme-cyan">
    <!-- Page Loader -->
    <div class="page-loader-wrapper">
        <div class="loader">
            <div class="preloader">
                <div class="spinner-layer pl-red">
                    <div class="circle-clipper left">
                        <div class="circle"></div>
                    </div>
                    <div class="circle-clipper right">
                        <div class="circle"></div>
                    </div>
                </div>
            </div>
            <p>Please wait...</p>
        </div>
    </div>
    <!-- #END# Page Loader -->
    <!-- Top Bar -->
   <nav class="navbar">
        <div class="container-fluid" style="color: #fff;">
            <div class='col-md-12 m-t--5'>
                <a href="index.html" style="float: right; padding-top: 15px;font-size:16px;color: #fff;">Home</a>
                <center>
                  <h2>KUVEMPU UNIVERSITY</h2>
                </center>
                <center>
                  <h3 style="margin-top: -4px;margin-right: 30px;">Admission Panel</h3>
                </center>
            </div>
        </div>
    </nav>
    
    
    <section class="content">
    	<div class="row clearfix">
		   	<div class="container-fluid">
		        <div class="col-lg-10 col-md-10 col-sm-12 col-xs-12">
		            <div class="card  p-l-20 p-r-20 p-b-100" style="padding-bottom: 200px">
                        <div class="header">
        		            		<h3>Kuvempu University</h3>
        		            		<h2><small>Directorate of Distance Education</small></h2>
                        </div>
                        
<?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");





$paytmChecksum = "";
$paramList = array();
$isValidChecksum = "FALSE";

$servername = "97.74.228.93";
$username = "logisys3_logu";
$password = "Logisys@2106";
$dbname = "logisys3_kusd";

$conn = new mysqli($servername, $username, $password, $dbname);

$paramList = $_POST;

$paytmChecksum = isset($_POST["CHECKSUMHASH"]) ? $_POST["CHECKSUMHASH"] : ""; //Sent by Paytm pg
//Verify all parameters received from Paytm pg to your application. Like MID received from paytm pg is same as your application’s MID, TXN_AMOUNT and ORDER_ID are same as what was sent by you to Paytm PG for initiating transaction etc.
$isValidChecksum = verifychecksum_e($paramList, '4RjXwY1hLhlHBO2i', $paytmChecksum); //will return TRUE 

if($isValidChecksum == "TRUE") 
{
    $status = $_POST["STATUS"];
   // $productinfo = $_POST["ORDERID"];
    $orderid = $_POST["ORDERID"];
    $productinfo = $_POST["MERC_UNQ_REF"];
    $txnid = $_POST["TXNID"];
    $MID = $_POST["MID"];
    $CHECKSUMHASH = $_POST["CHECKSUMHASH"];
    //$productinfo = '103E3050155';
    $MID = 'KuveUn47975822293792';
    $requestParamList = array();
    $responseParamList = array();
    
    $requestParamList = array("MID" => "{$MID}" , "ORDERID" => "{$orderid}","MERC_UNQ_REF" => "{$productinfo}");  

    $checkSum = getChecksumFromArray($requestParamList,'4RjXwY1hLhlHBO2i');
    $requestParamList['CHECKSUMHASH'] = urlencode($checkSum);

    $data_string = "JsonData=".json_encode($requestParamList);
    
    $ch = curl_init();                    // initiate curl
    //$url = "https://pguat.paytm.com/oltp/HANDLER_INTERNAL/getTxnStatus?"; // where you want to post data
   $url = "https://secure.paytm.in/oltp/HANDLER_INTERNAL/getTxnStatus?"; // where you want to post data
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_POST, true);  // tell curl you want to post something
    curl_setopt($ch, CURLOPT_POSTFIELDS,$data_string); // define what you want to post
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // return the output in string format
    $headers = array();
    $headers[] = 'Content-Type: application/json';
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    $output = curl_exec($ch); // execute
    $info = curl_getinfo($ch);

    $data = json_decode($output, true);
    echo $data;
  $update="update studadm set FPAYMENTREMARKS='{$txnid}'
      where fAPPNO ='{$productinfo}'";

      $result=$conn->query($update);
  //echo "<b>Checksum matched and following are the transaction details:</b>" . "<br/>";
  if ($data["STATUS"] == "TXN_SUCCESS") 
  {
    $status = $data["STATUS"];
    //$productinfo = $data["ORDERID"];
    $ORDERID = $data["ORDERID"];
    $productinfo = $data["MERC_UNQ_REF"];
    $txnid = $data["TXNID"];
    $MID = $data["MID"];
    $CHECKSUMHASH = $data["CHECKSUMHASH"];

      
      $txnid = $data['TXNID'];
      $firstname = 'Paytm';
      
      echo "<h3 style='color:green;'>Thank You. Your order status is success</h3>";
      echo "<h3>Your Transaction ID for this transaction is ".$data['TXNID'].".</h3>";
      echo "<h3>We have received a payment of Rs. " . $data['TXNAMOUNT']  ."</h3>";
      
      $html="
      <button type='button' class='btn btn-primary waves-effect btn-lg' onclick = \"PrintApplicationFormpaytmNETBANKING('{$productinfo}');\">Print Application
                               </button>";
      echo $html;
      
      $update="update studadm set FPAYMENTREMARKS='{$txnid}',FPAYMENTSTATUS='success',
      FPAYMENTDATE = now()
      where fAPPNO ='{$productinfo}'";

      $result=$conn->query($update); 
      
  }
  else 
  {
    echo "<b>Transaction status is failure</b>" . "<br/>";
  }

}

?>

                    </div>
                    </div>
		       </div>
		   </div>
		</div>
    </section>

<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog p-l-100" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h4 class="modal-title" id="exampleModalLabel">Please Enter your Register Number<span style="color: red;">*</span></h4>
      </div>
      <div class="modal-body">
            <div class="row clearfix" id = 'transcript'>
                <div class="col-sm-7">
                   <div class="form-group">
                    <span class='fieldError' id="studregno_err">
                      Register Number is required
                    </span>
                       <div class="form-line">
                         <input type="text" id="studregno" class="form-control" placeholder="Type Register No." required>
                       </div>
                   </div>
                </div>
             </div>
        </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary"  onclick="studentregno()">submit</button>
      </div>
    </div>
  </div>
</div>
    
    <script src="js/appForm.js"></script>
    <script src="js/control.js"></script>
    <script src="js/validate.js"></script>
    <script src="js/MainPage.js"></script>
    <script src="js/Registrationpage.js"></script>
    <!-- Jquery Core Js -->
    <script src="plugins/jquery/jquery.min.js"></script>

    <!-- Bootstrap Core Js -->
    <script src="plugins/bootstrap/js/bootstrap.js"></script>

    <!-- Select Plugin Js -->
    <script src="plugins/bootstrap-select/js/bootstrap-select.js"></script>

    <!-- Slimscroll Plugin Js -->
    <script src="plugins/jquery-slimscroll/jquery.slimscroll.js"></script>

    <!-- Waves Effect Plugin Js -->
    <script src="plugins/node-waves/waves.js"></script>

    <script src="plugins/jquery-validation/jquery.validate.js"></script>
    <script src="plugins/jquery-steps/jquery.steps.js"></script>
	<script src="js/pages/forms/form-wizard.js"></script>
    <script src="plugins/sweetalert/sweetalert.min.js"></script>
	<!-- Autosize Plugin Js -->
    <script src="js/form_submit.js"></script>

    <!-- Input Mask Plugin Js -->
    <script src="plugins/jquery-inputmask/jquery.inputmask.bundle.js"></script>

    <script src="plugins/dropzone/dropzone.js"></script>
    <script src="plugins/bootstrap-tagsinput/bootstrap-tagsinput.js"></script>
    <script src="plugins/jquery-validation/jquery.validate.js"></script>
    <script src="plugins/jquery-steps/jquery.steps.js"></script>
    <script src="plugins/sweetalert/sweetalert.min.js"></script>

    <!-- Custom Js -->
    <script src="js/admin.js"></script>

    <script src="js/appStatus.js"></script>
    <!-- Demo Js -->
    <script src="js/demo.js"></script>
    <script type="text/javascript">
        $(function() {
           $("li").click(function() {
              // remove classes from all
              $("li").removeClass("active");
              // add class to the one we clicked
              $(this).addClass("active");
           });
        });
    </script>
</body>

</html>