Current File : /home/inlingua/public_html/dwarka/icentex/inlingua_payment/ingl_failed.php |
<?php
session_start();
include("header1.php");
?>
<?php
echo "Message->".$strMessage = isset($_GET['Message']) ? $_GET['Message'] : '';
echo "ResTrackId->".$strMTRCKID = isset($_GET['ResTrackId']) ? $_GET['ResTrackId'] : '';
echo "ResAmount->".$strAmt = isset($_GET['ResAmount']) ? $_GET['ResAmount'] : '';
echo "ResError->".$strError = isset($_GET['ResError']) ? $_GET['ResError'] : '';
?>
<br><br> <br><br>
<table border="0" align="center" >
<!--<tr>
<th colspan="50" bgcolor="darkblue" ><p style= "color:white">Transaction Failed Response </th>
</tr>
<tr>
<td colspan="35"> Transaction Status </td>
<td> <?php echo $strMessage;?></td>
</tr>
<tr>
<td colspan="35"> Merchant Reference No:[TRACK_ID] </td>
<td> <?php echo $strMTRCKID;?> </td>
</tr>
<tr>
<td colspan="35"> Transaction Amount </td>
<td> <?php echo $strAmt;?> </td>
</tr>
<tr>
<td colspan="35"> Error Description </td>
<td><center><FONT color="red"><b> <?php echo $strError;?></FONT></td>
</tr>-->
<tr>
<td><center><FONT color="red"><b>Transaction Failed (<?php echo $strError;?>).Please try again.</FONT></td>
</tr>
</table>
<br><br><br><br><br>
<table border="0" align="center" width="100%" >
<tr>
<td align="Left" width="90%"><font size = 5 color = darkblue face = verdana > </td>
<td align="right"width="10%"><IMG SRC="images/fssnet.JPG" WIDTH="169" HEIGHT="37" BORDER="0" ALT=""></td>
</tr>
</table>
<center><A href="index.php"><p style="color:blue"><b>Click here to enter another transaction</b></p></A></center>
<?php
include("footer.php");
session_destroy();
?>
<!-- Disclaimer:- Important Note in Sample Pages
- This is a sample demonstration page only ment for demonstration, this page should not be used in production
- Transaction data should only be accepted once from a browser at the point of input, and then kept in a way that does not allow others to modify it (example server session, database etc.)
- Any transaction information displayed to a customer, such as amount, should be passed only as display information and the actual transactional data should be retrieved from the secure source last thing at the point of processing the transaction.
- Any information passed through the customer's browser can potentially be modified/edited/changed/deleted by the customer, or even by third parties to fraudulently alter the transaction data/information. Therefore, all transaction information should not be passed through the browser to Payment Gateway in a way that could potentially be modified (example hidden form fields).
-->