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 = 'All Transactions'; include 'header.php'; // Get all user transactions try { $stmt = $pdo->prepare("SELECT * FROM transactions WHERE user_id = ? ORDER BY created_at DESC"); $stmt->execute([$_SESSION['user_id']]); $transactions = $stmt->fetchAll(); } catch (PDOException $e) { $transactions = []; } ?> <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">All Transactions</h1> </div> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body"> <?php if (count($transactions) > 0): ?> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Type</th> <th>Amount</th> <th>Note</th> <th>Date</th> </tr> </thead> <tbody> <?php foreach ($transactions as $transaction): ?> <tr> <td> <?php switch ($transaction['type']) { case 'deposit': echo '<span class="badge bg-info">Deposit</span>'; break; case 'withdraw': echo '<span class="badge bg-warning">Withdraw</span>'; break; case 'commission': echo '<span class="badge bg-success">Commission</span>'; break; case 'ad': echo '<span class="badge bg-primary">Ad Reward</span>'; break; default: echo '<span class="badge bg-secondary">' . ucfirst($transaction['type']) . '</span>'; } ?> </td> <td> <?php if ($transaction['type'] === 'withdraw'): ?> -₨<?php echo number_format($transaction['amount'], 2); ?> <?php else: ?> ₨<?php echo number_format($transaction['amount'], 2); ?> <?php endif; ?> </td> <td><?php echo htmlspecialchars($transaction['note'] ?? '-'); ?></td> <td><?php echo date('M d, Y H:i', strtotime($transaction['created_at'])); ?></td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php else: ?> <p>You don't have any transactions yet.</p> <?php endif; ?> </div> </div> </div> </div> <?php include 'footer.php'; ?>