Viewing File: /home/quiczmwg/bitmaven.org/admin/confirmed_payment.php
<?php
// session_start();
include 'head.php';
include 'header.php';?>
<body class="skin-default fixed-layout">
<div id="main-wrapper">
<?php
include 'sidebar.php';
// include 'config.php';
$sql = $conn->query("SELECT * FROM ddeposit WHERE dstatus = 'confirmed' ");
?>
<div class="page-wrapper">
<section>
<div class="">
<?php
include 'nav1.php';
?>
<div class="container-fluid">
<div class="card">
<div class="card-header">
<?php echo isset($_SESSION['mgs'])?$_SESSION['mgs']:""?>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table">
<thead>
<th>#</th>
<th>Date</th>
<th>Email</th>
<th>Amount</th>
<th>Method</th>
<th>Status</th>
<!-- <th>----</th> -->
</thead><br>
<tbody>
<?php
$select_products = mysqli_query($conn, "SELECT * FROM `ddeposit` where dstatus = 'confirmed' ");
if (mysqli_num_rows($select_products) > 0) {
$num=1;
while ($row = mysqli_fetch_assoc($select_products)){
?>
<tr>
<td><?php echo $num++; ?></td>
<td><?php echo $row['created_at']; ?></td>
<td><?php echo $row['demail']; ?></td>
<td><?php echo $row['amount']; ?></td>
<td><?php echo $row['payment_method']; ?></td>
<td><?php echo $row['dstatus']; ?></td>
<td>
<!-- <a href="payment-details.php?deposit_id=<?=$row['deposit_id']?>" class="btn btn-info btn-sm">Details</a> -->
</td>
</tr>
<?php } }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<?php include 'footer.php'; ?>
</body>
</html>
Back to Directory
File Manager
<