Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
.trash /
deployment_package /
user /
Delete
Unzip
Name
Size
Permission
Date
Action
ads.php
4.94
KB
-rw-r--r--
2025-10-17 23:43
dashboard.php
10.78
KB
-rw-r--r--
2025-10-18 00:40
deposit.php
6.02
KB
-rw-r--r--
2025-10-17 23:02
deposit_history.php
3.23
KB
-rw-r--r--
2025-10-17 23:03
dpin.php
5.9
KB
-rw-r--r--
2025-10-17 23:03
footer.php
565
B
-rw-r--r--
2025-10-17 23:02
header.php
12.32
KB
-rw-r--r--
2025-10-18 02:06
invite.php
3.53
KB
-rw-r--r--
2025-10-18 00:19
membership.php
11.7
KB
-rw-r--r--
2025-10-18 00:56
profile.php
5.27
KB
-rw-r--r--
2025-10-17 23:04
team.php
5.26
KB
-rw-r--r--
2025-10-17 23:50
transactions.php
3.85
KB
-rw-r--r--
2025-10-17 23:04
withdraw.php
6.19
KB
-rw-r--r--
2025-10-17 23:03
Save
Rename
<?php $title = 'Deposit History'; include 'header.php'; // Get user's deposit history try { $stmt = $pdo->prepare("SELECT * FROM deposits WHERE user_id = ? ORDER BY created_at DESC"); $stmt->execute([$_SESSION['user_id']]); $deposits = $stmt->fetchAll(); } catch (PDOException $e) { $deposits = []; } ?> <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom"> <h1 class="h2">Deposit History</h1> </div> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body"> <?php if (count($deposits) > 0): ?> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Date</th> <th>Amount</th> <th>Method</th> <th>Status</th> <th>Receipt</th> </tr> </thead> <tbody> <?php foreach ($deposits as $deposit): ?> <tr> <td><?php echo date('M d, Y H:i', strtotime($deposit['created_at'])); ?></td> <td>₨<?php echo number_format($deposit['amount'], 2); ?></td> <td><?php echo htmlspecialchars($deposit['method']); ?></td> <td> <?php if ($deposit['status'] === 'pending'): ?> <span class="badge bg-warning">Pending</span> <?php elseif ($deposit['status'] === 'approved'): ?> <span class="badge bg-success">Approved</span> <?php else: ?> <span class="badge bg-danger">Rejected</span> <?php endif; ?> </td> <td> <?php if ($deposit['receipt']): ?> <a href="../<?php echo htmlspecialchars($deposit['receipt']); ?>" target="_blank" class="btn btn-sm btn-outline-primary">View</a> <?php else: ?> - <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php else: ?> <p>You don't have any deposit history yet.</p> <?php endif; ?> </div> </div> </div> </div> <?php include 'footer.php'; ?>