���� JFIF fdasasfas213sdaf
Server IP : 147.79.69.148 / Your IP : 216.73.216.200 Web Server : LiteSpeed System : Linux in-mum-web669.main-hosting.eu 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64 User : u479334040 ( 479334040) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u479334040/domains/adjointinfocom.com/public_html/php/ |
Upload File : |
<?php require_once('../include/header.php'); require_once('../include/assets.php'); ?> <section class="section contact-us"> <div class="container"> <?php include('Crypto.php')?> <?php error_reporting(0); $workingKey='67B01BF41593347172E2845D4B2B7216'; //Working Key should be provided here. $encResponse=$_POST["encResp"]; //This is the response sent by the CCAvenue Server $rcvdString=decrypt($encResponse,$workingKey); //Crypto Decryption used as per the specified working key. $order_status=""; $decryptValues=explode('&', $rcvdString); $dataSize=sizeof($decryptValues); echo "<center>"; for($i = 0; $i < $dataSize; $i++) { $information=explode('=',$decryptValues[$i]); if($i==3) $order_status=$information[1]; } if($order_status==="Success") { echo "<img src='success.png' style='width: 100px;'><br />"; echo "<br>Payment Successfull, Thank you for your payment."; } else if($order_status==="Aborted") { echo "<img src='failed.png' style='width: 100px;'><br />"; echo "<br>We will keep you posted regarding the status of your order through e-mail"; } else if($order_status==="Failure") { echo "<img src='failed.png' style='width: 100px;'><br />"; echo "<br>Transaction has been declined."; } else { echo "<img src='failed.png' style='width: 100px;'><br />"; echo "<br>Security Error. Illegal access detected"; } echo "<br><br>"; echo "<table cellspacing=4 cellpadding=4>"; for($i = 0; $i < 5; $i++) { $information=explode('=',$decryptValues[$i]); echo '<tr><td>'.$information[0].'</td><td>'.$information[1].'</td></tr>'; } echo "</table><br>"; echo "</center>"; ?> </div> <!-- End of .container --> </section> <?php require_once('../include/footer.php'); ?>