
PK 
<?php
ob_start();
//error_reporting(E_ALL ^ E_NOTICE);
@session_start();
ini_set('allow_url_include',1);
date_default_timezone_set("Asia/Kolkata");
set_time_limit(600);
ini_set('max_execution_time',600);
include 'admin/includes/settings/constant.php';
//include 'includes/settings/db.php';
require_once 'admin/includes/settings/PDODB.php';
include 'admin/includes/modules/functions.php';
$function = new FUNCTIONS();
//print_r($_SESSION['userId']);
if(empty($_SESSION['userId'])){
header("Location: index.php");
exit();
}
$loger = $function->getLogerDetails($_SESSION['userId'],$_SESSION['orderid']);
//$arr = $transaction[0]['orderid'];
//print_r($loger[0]['status']);
//exit;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Indian Buying Agents, Buying Agents in India, Sourcing Agents in India, Indian Sourcing Agents, Buying Agents in
delhi</title>
</head>
<body>
<div style="width:600px; margin:0px auto; margin-top:150px; font-family:Arial, Helvetica, sans-serif">
<div style="border-bottom:#999999 solid 1px;"></div>
<table style="float:left; margin-top:20px; margin-left:15px; width:600px;">
<tr>
<th colspan="3">Transaction failure</th>
</tr>
<tr>
<td>Order Id</td>
<td>:</td>
<td><?=$loger[0]['orderid'];?></td>
</tr>
<tr>
<td>Transaction Id</td>
<td>:</td>
<td><?=$loger[0]['txnid'];?></td>
</tr>
<tr>
<td>Amount</td>
<td>:</td>
<td><?=$loger[0]['amount'];?></td>
</tr>
<tr>
<td>Date</td>
<td>:</td>
<td><?=$loger[0]['txndate'];?></td>
</tr>
<tr>
<td>Status</td>
<td>:</td>
<td><?=$loger[0]['status'];?></td>
</tr>
<tr>
<td>Descripation</td>
<td>:</td>
<td><?=$loger[0]['respmsg'];?></td>
</tr>
</table>
<div style="font-size:15px;; padding-top:15px; text-align:justify"></div>
<div style="clear:both"></div>
<div style="border-top:#999999 solid 1px; margin-top:20px;">
<div style="padding-top:10px;; text-align:right; font-size:12px"><img src="images/back-arrow.jpg" align="absmiddle" /> <a href="useradmin/payment.php" style="text-decoration:none; color:#000000">Try Again</a></div>
</div>
</div>
</body>
</html>


PK 99