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 /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-12-16 06:37
400128
[ DIR ]
drwxr-xr-x
2025-12-22 01:59
admin
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
assets
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
c048716d
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
d40b4
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
oishi_shop
[ DIR ]
drwxr-xr-x
2025-12-18 07:34
.htaccess
498
B
-rw-r--r--
2025-12-22 01:59
_footer.php
1.04
KB
-rw-r--r--
2025-08-14 05:52
_header.php
1.39
KB
-rw-r--r--
2025-08-14 05:34
cart.php
2.99
KB
-rw-r--r--
2025-08-13 23:10
config.php
719
B
-rw-r--r--
2025-08-14 05:43
db.php
326
B
-rw-r--r--
2025-08-13 23:10
error_log
130.69
KB
-rw-r--r--
2025-12-23 05:26
functions.php
893
B
-rw-r--r--
2025-08-13 23:10
google529f143b8ae8a1d2.html
53
B
-rw-r--r--
2021-10-18 04:39
index.php
3.61
KB
-rw-r--r--
2025-12-17 19:02
oishi_fashion_php_starter.zip
15.03
KB
-rw-r--r--
2025-08-14 05:26
product.php
1.7
KB
-rw-r--r--
2025-08-13 23:10
schema.sql
946
B
-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'; $id = isset($_GET['id']) ? (int)$_GET['id'] : 0; $p = product_get($id); if (!$p) { header('Location: index.php'); exit; } ?> <?php include __DIR__ . '/_header.php'; ?> <section class="py-10"> <div class="max-w-6xl mx-auto px-4 grid md:grid-cols-2 gap-6"> <div class="bg-white rounded-2xl overflow-hidden shadow-soft"> <div class="aspect-[4/5] bg-gray-100"> <?php if (!empty($p['image'])): ?> <img src="<?= e($p['image']) ?>" alt="<?= e($p['name']) ?>" class="w-full h-full object-cover" /> <?php else: ?> <img src="assets/images/placeholder.png" alt="<?= e($p['name']) ?>" class="w-full h-full object-cover" /> <?php endif; ?> </div> </div> <div> <h1 class="text-2xl md:text-3xl font-bold"><?= e($p['name']) ?></h1> <div class="mt-2 flex items-center gap-3"> <span class="text-2xl font-extrabold"><?= money($p['price']) ?></span> <?php if (!empty($p['old_price'])): ?> <span class="line-through text-gray-500"><?= money($p['old_price']) ?></span> <?php endif; ?> </div> <p class="mt-4 text-gray-700 whitespace-pre-line"><?= nl2br(e($p['description'])) ?></p> <form method="post" action="cart.php" class="mt-6 flex items-center gap-3"> <input type="hidden" name="action" value="add"> <input type="hidden" name="id" value="<?= (int)$p['id'] ?>"> <input type="number" name="qty" min="1" value="1" class="w-20 border border-gray-300 rounded-lg px-3 py-2"> <button class="bg-black text-white px-5 py-2 rounded-lg font-semibold">Add to Cart</button> </form> </div> </div> </section> <?php include __DIR__ . '/_footer.php'; ?>