Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
oishifashion /
public_html /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2025-12-18 07:34
admin.php
5.24
KB
-rw-r--r--
2025-12-16 09:20
delete_product.php
299
B
-rw-r--r--
2025-08-13 23:10
error_log
11.5
KB
-rw-r--r--
2025-12-23 06:43
index.php
63.88
KB
-rw-r--r--
2025-12-16 09:20
login.php
1.52
KB
-rw-r--r--
2025-08-13 23:10
logout.php
145
B
-rw-r--r--
2025-08-13 23:10
product_form.php
4.04
KB
-rw-r--r--
2025-08-13 23:10
products.php
1.98
KB
-rw-r--r--
2025-08-13 23:10
wp-blog-header.php
2.74
KB
-rw-r--r--
2025-12-18 07:34
wp-cron.php
2.74
KB
-rw-r--r--
2025-12-18 07:34
Save
Rename
<?php require_once __DIR__ . '/../functions.php'; ensure_admin(); $conn = db(); $res = $conn->query("SELECT * FROM products ORDER BY id DESC"); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Products</title> <script src="https://cdn.tailwindcss.com"></script> </head> <body class="bg-gray-100"> <div class="max-w-6xl mx-auto px-4 py-6"> <div class="flex items-center justify-between"> <h1 class="text-2xl font-bold">Products</h1> <div class="flex items-center gap-3"> <a class="px-3 py-2 rounded border" href="index.php">Back</a> <a class="px-3 py-2 rounded bg-black text-white" href="product_form.php">Add Product</a> </div> </div> <div class="mt-6 bg-white rounded-xl overflow-hidden shadow"> <table class="w-full text-left text-sm"> <thead class="bg-gray-100"> <tr> <th class="p-3">ID</th> <th class="p-3">Name</th> <th class="p-3">Price</th> <th class="p-3">Badge</th> <th class="p-3">Image</th> <th class="p-3"></th> </tr> </thead> <tbody> <?php while ($p = $res->fetch_assoc()): ?> <tr class="border-t"> <td class="p-3"><?= (int)$p['id'] ?></td> <td class="p-3"><?= e($p['name']) ?></td> <td class="p-3"><?= money($p['price']) ?></td> <td class="p-3"><?= e($p['badge']) ?></td> <td class="p-3 text-xs break-all"><?= e($p['image']) ?></td> <td class="p-3"> <a class="text-blue-600" href="product_form.php?id=<?= (int)$p['id'] ?>">Edit</a> | <a class="text-red-600" href="delete_product.php?id=<?= (int)$p['id'] ?>" onclick="return confirm('Delete this product?')">Delete</a> </td> </tr> <?php endwhile; ?> </tbody> </table> </div> </div> </body> </html>