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 Team Details (Showing Levels 1, 2, and 3) $stmt = $pdo->prepare("SELECT r.level, u.full_name, u.email, u.status, u.created_at, (SELECT COUNT(*) FROM assignment_submissions WHERE user_id = u.id AND status = 'approved') as work_done FROM referrals r JOIN users u ON r.referred_id = u.id WHERE r.referrer_id = ? ORDER BY r.level ASC, u.created_at DESC"); $stmt->execute([$user['id']]); $team = $stmt->fetchAll(); // Group by level $levels = [1 => [], 2 => [], 3 => []]; foreach ($team as $member) { if (isset($levels[$member['level']])) { $levels[$member['level']][] = $member; } } ?> <h2 style="margin-bottom:30px;">Team Working Details</h2> <div class="stat-grid" style="margin-bottom:30px;"> <div class="stat-card"> <div class="stat-title">Level 1 Members</div> <div class="stat-value"><?php echo count($levels[1]); ?></div> </div> <div class="stat-card" style="border-left-color: #f39c12;"> <div class="stat-title">Level 2 Members</div> <div class="stat-value"><?php echo count($levels[2]); ?></div> </div> <div class="stat-card" style="border-left-color: #3498db;"> <div class="stat-title">Level 3 Members</div> <div class="stat-value"><?php echo count($levels[3]); ?></div> </div> <div class="stat-card" style="border-left-color: #9b59b6;"> <div class="stat-title">Total Team</div> <div class="stat-value"><?php echo count($team); ?></div> </div> </div> <?php foreach ([1, 2, 3] as $l): ?> <h3 style="margin-bottom:15px; text-align:left; color:var(--text-muted);"> Team Level <?php echo $l; ?> <span style="font-size:0.9rem; font-weight:400;">(Showing <?php echo count($levels[$l]); ?> members)</span> </h3> <div class="card" style="padding:0; overflow:hidden; margin-bottom:30px;"> <div style="max-height: 185px; overflow-y: auto; overflow-x: auto;" class="custom-scrollbar"> <table class="admin-table"> <thead style="position: sticky; top: 0; z-index: 10; background: var(--card-bg-dark);"> <tr> <th>Member Name</th> <th>Status</th> <th>Approved Assignments</th> <th>Join Date</th> </tr> </thead> <tbody> <?php if (count($levels[$l]) > 0): ?> <?php foreach ($levels[$l] as $m): ?> <tr> <td style="font-weight:600;"><?php echo htmlspecialchars($m['full_name']); ?></td> <td> <span class="badge <?php echo $m['status'] == 'active' ? 'badge-success' : 'badge-warning'; ?>"> <?php echo ucfirst($m['status']); ?> </span> </td> <td style="font-weight:700; color:var(--primary-color);"> <i class="fas fa-check-circle" style="margin-right:5px;"></i> <?php echo $m['work_done']; ?> </td> <td style="font-size:0.85rem; color:var(--text-muted);"> <?php echo date('d M Y', strtotime($m['created_at'])); ?> </td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="4" style="text-align:center; padding:30px; color:var(--text-muted);"> No members at this level yet. </td> </tr> <?php endif; ?> </tbody> </table> </div> </div> <?php endforeach; ?> <?php require_once '../includes/footer_dashboard.php'; ?>