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 /
data sycho /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
auth
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
includes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
layouts
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
404.php
2.81
KB
-rw-r--r--
2026-03-01 20:29
PRD.md
10.42
KB
-rw-r--r--
2026-03-01 20:12
contact.php
8.52
KB
-rw-r--r--
2026-03-01 23:42
dashboard.php
27.37
KB
-rw-r--r--
2026-03-01 20:23
database.sql
3.35
KB
-rw-r--r--
2026-03-01 20:13
error_log
6.87
KB
-rw-r--r--
2026-03-01 20:23
index.php
11.9
KB
-rw-r--r--
2026-03-16 18:50
me.zip
14.2
MB
-rw-r--r--
2026-03-01 20:08
payment.php
9.09
KB
-rw-r--r--
2026-03-01 23:13
process_order.php
2.36
KB
-rw-r--r--
2026-03-01 21:23
purchase.php
6.51
KB
-rw-r--r--
2026-03-01 23:14
services.php
5.29
KB
-rw-r--r--
2026-03-01 23:40
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php include 'includes/db.php'; session_start(); // Fetch all active services from DB try { $stmt = $pdo->query("SELECT * FROM services WHERE status = 'Active'"); $db_items = $stmt->fetchAll(); } catch (Exception $e) { $db_items = []; } $all_services = []; if ($db_items) { foreach ($db_items as $row) { $features = !empty($row['features']) ? explode("\n", $row['features']) : []; $all_services[] = [ 'id' => $row['id'], 'name' => $row['name'], 'price' => $row['price'], 'is_premium' => (bool)$row['is_premium'], 'features' => $features ]; } } else { // Elegant Fallback $all_services = [ ['id' => 1, 'name' => 'Single Page Masterpiece', 'price' => '49.00', 'is_premium' => false, 'features' => ['Bespoke Landing Page', 'Basic SEO Integration', 'Fully Responsive', 'Smooth Animations']], ['id' => 2, 'name' => 'Full-Stack Ecosystem', 'price' => '199.00', 'is_premium' => true, 'features' => ['Scalable Backend Architecture', 'Secure Auth Ecosystem', 'Admin Command Center', 'API Distribution Layer']], ]; } include 'layouts/header.php'; ?> <main style="padding-top: 120px; padding-bottom: 10rem; background: #fafafa; min-height: 100vh;"> <div class="container"> <!-- Header Section --> <div class="services-header" style="text-align: center; max-width: 850px; margin: 0 auto 5rem auto; padding: 0 1rem;"> <span class="section-tag" style="margin-bottom: 1.5rem;">Solutions Hub</span> <h1 class="services-title" style="font-weight: 800; color: var(--text-main); line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -1.5px;">Premium <span>Development</span> Ecosystem</h1> <p style="color: var(--text-dim); font-size: 1.1rem; line-height: 1.7; font-weight: 500; max-width: 650px; margin: 0 auto;">Select a curated development solution to accelerate your digital growth. Engineered for performance, security, and scalability.</p> </div> <!-- Services Grid --> <div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; padding: 0 1.5rem;"> <?php foreach ($all_services as $service): ?> <div class="service-card <?php echo $service['is_premium'] ? 'premium' : ''; ?>" style="text-align: left; display: flex; flex-direction: column; height: auto; min-height: 550px; background: #fff;"> <div style="margin-bottom: 2rem;"> <h3 style="font-weight: 800; font-size: 1.7rem; margin-bottom: 0.8rem; letter-spacing: -0.5px; color: var(--text-main);"><?php echo htmlspecialchars($service['name']); ?></h3> <div class="pricing-summary" style="display: flex; align-items: baseline; gap: 0.6rem;"> <span class="main-price" style="font-size: 2.2rem; font-weight: 900; color: var(--primary);">$<?php echo number_format($service['price'], 2); ?></span> <span class="starting-label" style="font-size: 0.75rem; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 1.5px;">Starting at</span> </div> </div> <div style="flex-grow: 1;"> <p style="font-size: 0.75rem; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem;">Core Capabilities</p> <ul class="features-list" style="margin-bottom: 3rem; list-style: none; padding: 0;"> <?php foreach ($service['features'] as $feature): ?> <?php if (trim($feature)): ?> <li style="margin-bottom: 1.1rem; color: var(--text-dim); font-weight: 600; display: flex; align-items: flex-start; gap: 1rem; font-size: 0.95rem;"> <div style="width: 22px; height: 22px; background: rgba(34, 197, 94, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;"> <i class="fas fa-check" style="font-size: 0.7rem;"></i> </div> <span style="line-height: 1.4;"><?php echo htmlspecialchars($feature); ?></span> </li> <?php endif; ?> <?php endforeach; ?> </ul> </div> <div style="margin-top: auto; padding-top: 2rem; border-top: 1px solid #f1f5f9;"> <a href="purchase.php?id=<?php echo $service['id']; ?>" class="btn-primary" style="width: 100%; display: block; text-align: center; padding: 1.25rem; border-radius: 16px; font-weight: 800; font-size: 1rem; transition: transform 0.3s ease;"> Get Started Now <i class="fas fa-rocket" style="margin-left: 0.8rem; font-size: 0.85rem; opacity: 0.8;"></i> </a> </div> </div> <?php endforeach; ?> </div> </div> </main> <?php include 'layouts/footer.php'; ?>