home
/
aioutajg
/
watermelongame.site
/
admin
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] assets
N/A
[DIR] functions
N/A
[DIR] includes
N/A
add-ads.php
2.77 KB
Rename
Delete
add-category.php
2.58 KB
Rename
Delete
add-game.php
6.34 KB
Rename
Delete
add-page.php
3.12 KB
Rename
Delete
add-users.php
7.57 KB
Rename
Delete
advertisement.php
1.67 KB
Rename
Delete
api-settings.php
160.89 KB
Rename
Delete
categories.php
2.42 KB
Rename
Delete
comments.php
2.87 KB
Rename
Delete
games.php
5.18 KB
Rename
Delete
index.php
4.91 KB
Rename
Delete
login.php
2.54 KB
Rename
Delete
logout.php
124 bytes
Rename
Delete
pages.php
2.49 KB
Rename
Delete
settings.php
7.06 KB
Rename
Delete
tools.php
2.83 KB
Rename
Delete
users.php
2.67 KB
Rename
Delete
<?php $page = "Categories"; ?> <?php include "includes/config.php"; ?> <?php $sql = "select * from zon_category"; $run = mysqli_query($con, $sql); ?> <?php require "../includes/function_general.php"; ?> <?php include "includes/header.php"; ?> <body class="dark:bg-[#121317]"> <main class="d-flex"> <?php include "includes/sidebar.php"; ?> <div class="main w-full px-12 py-6"> <div class="games-list"> <a href="add-category.php" class="py-2 px-6 bg-blue-400 text-white uppercase text-xs rounded-md">ADD</a> <table class="w-full mt-10 " > <thead class="border-b-2 dark:border-zinc-800 px-16 border-gray-100 py-2"> <td class="py-2 text-xs text-gray-600 px-4">ID</td> <td class="py-2 text-xs text-gray-600 px-4 w-full">Name</td> <td class="py-2 text-xs text-right"></td> </thead> <tbody> <?php while ($row = mysqli_fetch_assoc($run)) { ?> <tr class="bg-[white] dark:bg-[#121317] px-16 "> <td class="text-xs text-gray-500 px-4 ">#<?=$row['id']?></td> <td class="text-gray-500 px-4 text-sm flex items-center py-3"><a href="add-category.php?action=update&token_id=<?= $row['id'] ?>"><?= $row['name'] ?></a></td> <td class="text-right relative px-6"> <button data-target="#dc_<?= $row['id'] ?>" class="bi-three-dots-vertical text-gray-500 drop_btn"></button> <div id="dc_<?= $row['id'] ?>" style="z-index: 99;" class="dropdown absolute bg-white text-right right-0 hidden flex-column "> <a href="add-category.php?action=update&token_id=<?= $row['id'] ?>" class="text-xs px-4 py-2">Edit</a> <a href="functions/functions.php?action=delete&token_id=<?= $row['id'] ?>&content_type=category" class="text-xs px-4 py-2 text-red-700">Delete</a> </div> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </main> <?php include "includes/footer.php"; ?> </body> </html>
Save