OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
reader
/
knaadu
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/04/2025 08:32:49 AM
rwxr-xr-x
📄
about.php
22 bytes
05/19/2025 10:07:13 AM
rw-r--r--
📁
cms
-
05/19/2025 10:07:13 AM
rwxr-xr-x
📄
contact.php
1.61 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
contributors.php
3.19 KB
05/19/2025 10:07:13 AM
rw-r--r--
📁
data
-
03/03/2025 08:31:53 AM
rwxr-xr-x
📄
editor.desk.php
6.52 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
editorial.php
4.01 KB
05/19/2025 10:07:13 AM
rw-r--r--
📁
grfx
-
03/03/2025 08:22:57 AM
rwxr-xr-x
📁
inc
-
05/19/2025 10:07:13 AM
rwxr-xr-x
📄
index.php
984 bytes
05/19/2025 10:07:13 AM
rw-r--r--
📄
list.articles.php
4.28 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
list.authors.php
2.94 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
list.categories.php
2.45 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
list.volumes.php
3.6 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
puzzle.corner.php
987 bytes
05/19/2025 10:07:13 AM
rw-r--r--
📄
show.article.php
2.81 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
show.author.php
3.38 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
show.category.php
2.45 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
show.issue.php
3.85 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
show.volume.php
2.65 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
zeditor.desk.php
6.52 KB
05/19/2025 10:07:13 AM
rw-r--r--
Editing: list.categories.php
Close
<!DOCTYPE html> <html> <head> <title>A Quarterly Publication of ACCS</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <script src="inc/jquery-3.6.0.min.js"></script> <script src="inc/bootstrap.min.js"></script> <script src="inc/moment.min.js"></script> <script src="inc/common.js"></script> <link rel="stylesheet" type="text/css" href="inc/bootstrap.min.css" /> <link rel="stylesheet" type="text/css" href="inc/fontawesome/css/all.min.css" /> <link rel="stylesheet" type="text/css" href="inc/style.css" /> </head> <body> <? include 'inc/config.php' ?> <? include 'inc/header.php' ?> <div class="container"> <div class="row"> <div class="col-12 col-md-2 pt-2"> <i class="fas fa-angle-right"></i> <a href="list.volumes.php" style="font-size:15px">Volumes</a><br> <div class="lineDotted"></div> <i class="fas fa-angle-right"></i> <a href="list.articles.php" style="font-size:15px">Articles</a><br> <div class="lineDotted"></div> <i class="fas fa-angle-right"></i> <a href="list.authors.php" style="font-size:15px">Authors</a><br> <div class="lineDotted"></div> <i class="fas fa-angle-right"></i> <b style="font-size:15px">Categories</b><br> </div> <div class="col-12 col-md-6"> <div class="txtMedium txtBlue mb-2 py-2">Categories</div> <? $categoryNum = 1; $sql = "SELECT category_id,category_name FROM categories ORDER BY category_name"; $query = mysqli_query($dbpro,$sql); while ($row = $query->fetch_assoc()) { $categoryId = $row['category_id']; $categoryName = $row['category_name']; if (($categoryNum % 3) == 1) { ?> <div class="row justify-content-center mt-3"> <? } ?> <div class="col-md-4 col-xs-12 col-sm-12 col-xl-4 col-lg-4"> <? if ($categoryId == 24) { ?> <div class="my-2 py-3" align="center" style="border:1px dotted #000"><a href="special.section.php"><?=$categoryName?></a></div> <? } else { ?> <div class="my-2 py-3" align="center" style="border:1px dotted #000"><a href="show.category.php?id=<?=$categoryId?>"><?=$categoryName?></a></div> <? } ?> </div> <? if (($categoryNum % 3) == 0) { ?> </div> <? } $categoryNum += 1; } if (($categoryNum % 3) == 0) { ?> <div class="col-md-4 col-xs-12 col-sm-12 col-xl-4 col-lg-4"></div> </div> <? } ?> </div> <div class="col-12 col-md-4"> <? include 'inc/side.php' ?> </div> </div> </div> <? include 'inc/footer.php' ?> </body> </html>