| Current Path : /home2/wtmwscom/public_html/member/ |
| Current File : /home2/wtmwscom/public_html/member/report_fund_transfer.php |
<?php
$title= "Transfer Fund History";
include 'header.php';
include_once('lib/ps_pagination.php');
$uid = $_SESSION['userid'];
?>
<h1>Transfer Fund History</h1>
<?php echo getMessage();?>
<section>
<table style="width: 100%;">
<thead>
<tr>
<th>S. No.</th>
<th>From</th>
<th>To</th>
<th>Amount</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<?php
$query = "SELECT uid, from_uid, amount, datetime FROM `fund_transfer` WHERE `uid`='".$uid."' OR `from_uid`='".$uid."' ORDER BY `datetime` DESC";
if(!isset($_GET['page'])){$i=1;}else{$i=(($_GET['page']-1)*20)+1;}
$pager = new PS_Pagination($link, $query, 20, 5);
$pager->setDebug(true);
$result = $pager->paginate();
if($result){
while ($row = mysqli_fetch_object($result)){
$user = mysqli_fetch_object(mysqli_query($connection, "SELECT login_id, name FROM user WHERE uid='".$row->from_uid."'"));
$to_user = mysqli_fetch_object(mysqli_query($connection, "SELECT login_id, name FROM user WHERE uid='".$row->uid."'"));
?>
<tr <?php if($i%2){echo "class='light'";}else{echo "class='dark'";}?>>
<td><?php echo $i; ?></td>
<td><?php if($user){echo $user->name." (".$user->login_id.")";}else{echo 'Admin';}?></td>
<td><?php if($to_user){echo $to_user->name." (".$to_user->login_id.")";}?></td>
<td><?php echo $row->amount;?></td>
<td><?php echo date("d M, Y H:i A", strtotime($row->datetime)); ?></td>
</tr>
<?php
$i++;}
}?>
</tbody>
</table>
<?php echo $pager->renderFullNav();?>
</section>
<?php include 'footer.php';?>