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 /
assignment.work.zone /
user /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
AssignmentWorkZone.apk
19.5
MB
-rw-r--r--
2026-03-28 16:09
assignment.php
20.18
KB
-rw-r--r--
2026-03-31 10:04
checkout.php
10.61
KB
-rw-r--r--
2026-03-13 17:01
dashboard.php
10.53
KB
-rw-r--r--
2026-03-31 10:21
history.php
3.6
KB
-rw-r--r--
2026-03-12 12:52
logout.php
91
B
-rw-r--r--
2026-03-11 23:27
pending.php
4.56
KB
-rw-r--r--
2026-03-12 01:29
plan-current.php
2.55
KB
-rw-r--r--
2026-03-11 23:27
profile.php
5.04
KB
-rw-r--r--
2026-03-28 15:45
referral-commissions.php
6.07
KB
-rw-r--r--
2026-03-12 00:37
referral.php
8.61
KB
-rw-r--r--
2026-03-28 15:31
select-plan.php
3.4
KB
-rw-r--r--
2026-03-11 23:27
support.php
12.43
KB
-rw-r--r--
2026-03-12 13:23
team-commission.php
2.82
KB
-rw-r--r--
2026-03-12 12:52
team-details.php
4.46
KB
-rw-r--r--
2026-03-12 15:31
withdraw-history.php
3.53
KB
-rw-r--r--
2026-03-12 12:52
withdraw.php
8.18
KB
-rw-r--r--
2026-03-12 15:18
wp-blog-header.php
2.74
KB
-r--r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php require_once '../includes/config.php'; require_once '../includes/header_dashboard.php'; require_once '../includes/sidebar.php'; // Ensure user is loaded $stmt = $pdo->prepare("SELECT * FROM users WHERE id = ?"); $stmt->execute([$_SESSION['user_id']]); $user = $stmt->fetch(); if (!$user || $user['status'] != 'active') { header("Location: ../login.php"); exit; } // Fetch Withdrawal History $stmt = $pdo->prepare("SELECT w.*, m.bank_name FROM withdrawals w JOIN withdraw_methods m ON w.method_id = m.id WHERE w.user_id = ? ORDER BY w.requested_at DESC"); $stmt->execute([$user['id']]); $withdrawals = $stmt->fetchAll(); ?> <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:30px;"> <h2>Withdrawal History</h2> <a href="withdraw.php" class="btn-primary" style="padding:10px 20px; font-size:0.9rem;">New Request</a> </div> <div class="card" style="padding:0; overflow:hidden;"> <div style="max-height: 400px; overflow-y: auto; overflow-x: auto; padding-right: 5px;" class="custom-scrollbar"> <table class="admin-table"> <thead style="position: sticky; top: 0; z-index: 10; background: var(--card-bg-dark);"> <tr> <th>ID</th> <th>Method</th> <th>Account Info</th> <th>Amount</th> <th>Status</th> <th>Date</th> </tr> </thead> <tbody> <?php if (count($withdrawals) > 0): ?> <?php foreach ($withdrawals as $w): ?> <tr> <td>#<?php echo $w['id']; ?></td> <td><?php echo htmlspecialchars($w['bank_name']); ?></td> <td> <div style="font-size:0.9rem; font-weight:600;"><?php echo htmlspecialchars($w['user_account_name']); ?></div> <div style="font-size:0.8rem; color:var(--text-muted);"><?php echo htmlspecialchars($w['user_account_number']); ?></div> </td> <td style="font-weight:700; color:var(--primary-color);">Rs <?php echo number_format($w['amount'], 2); ?></td> <td> <?php $status_class = ''; if ($w['status'] == 'pending') $status_class = 'badge-warning'; elseif ($w['status'] == 'approved') $status_class = 'badge-success'; elseif ($w['status'] == 'rejected') $status_class = 'badge-danger'; ?> <span class="badge <?php echo $status_class; ?>"> <?php echo ucfirst($w['status']); ?> </span> </td> <td style="font-size:0.85rem; color:var(--text-muted);"> <?php echo date('d M Y, h:i A', strtotime($w['requested_at'])); ?> </td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="6" style="text-align:center; padding:50px; color:var(--text-muted);"> No withdrawal requests found. </td> </tr> <?php endif; ?> </tbody> </table> </div> </div> <?php require_once '../includes/footer_dashboard.php'; ?>