OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
knaadu
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2025 11:18:49 AM
rwxr-xr-x
📄
about.php
22 bytes
01/14/2024 11:11:31 AM
rw-r--r--
📁
cms
-
01/14/2024 12:04:40 PM
rwxr-xr-x
📄
contact.php
1.61 KB
07/15/2023 04:15:21 PM
rwxr-xr-x
📄
contributors.php
3.19 KB
04/29/2023 03:34:18 AM
rwxr-xr-x
📁
data
-
01/14/2024 11:31:41 AM
rwxr-xr-x
📄
editor.desk.php
6.52 KB
01/14/2024 02:45:19 PM
rwxr-xr-x
📄
editorial.php
4.01 KB
12/25/2021 01:47:00 AM
rwxr-xr-x
📁
grfx
-
01/14/2024 03:33:47 PM
rwxr-xr-x
📁
inc
-
01/27/2024 08:20:35 AM
rwxr-xr-x
📄
list.articles.php
4.28 KB
12/28/2021 01:28:00 AM
rwxr-xr-x
📄
list.authors.php
2.94 KB
12/28/2021 02:36:00 AM
rwxr-xr-x
📄
list.categories.php
2.45 KB
12/27/2021 10:53:00 PM
rwxr-xr-x
📄
list.volumes.php
3.6 KB
12/27/2021 10:45:00 PM
rwxr-xr-x
📄
puzzle.corner.php
987 bytes
12/25/2021 01:47:00 AM
rwxr-xr-x
📄
show.article.php
2.81 KB
02/21/2023 05:23:28 AM
rwxr-xr-x
📄
show.author.php
3.38 KB
12/28/2021 02:32:00 AM
rwxr-xr-x
📄
show.category.php
2.45 KB
04/29/2023 03:33:19 AM
rwxr-xr-x
📄
show.issue.php
3.85 KB
12/28/2021 02:35:00 AM
rwxr-xr-x
📄
show.volume.php
2.65 KB
12/27/2021 10:55:00 PM
rwxr-xr-x
📄
z_index.php
744 bytes
01/13/2024 04:49:20 AM
rwxr-xr-x
Editing: show.article.php
Close
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> <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' ?> <? $articleId = isset($_GET["id"]) ? $_GET["id"] : ''; if ($articleId == '') die(); ?> <div class="container"> <div class="row"> <div class="col-12 col-md-8"> <? $sql = "SELECT A.article_title,A.article_text,A.article_img,B.category_id,B.category_name FROM articles A INNER JOIN categories B ON A.category_id=B.category_id WHERE A.is_active=1 AND A.article_id=$articleId"; $query = mysqli_query($dbpro,$sql); $hasResult = mysqli_num_rows($query); if ($hasResult > 0) { $row = $query->fetch_assoc(); $articleTitle = $row['article_title']; $articleImg = $row['article_img']; $articleTxt = $row['article_text']; //$articleIssueDate = date("d F, Y", strtotime($row['issue_date'])); ?> <div class="row justify-content-center mt-3"> <div class="col-12 panelArticle"> <div class="txtM txtGrey pt-1 pb-4">Home</div> <div class="txtMedium txtBlue pb-4"><?=$articleTitle?></div> <? if ($articleImg <> '') { ?> <img src="data/articles/<?=$articleId?>.<?=$articleImg?>" class="img-fluid" /><br><br> <? } $sql = "SELECT B.author_id,B.first_name,B.last_name,B.affiliation FROM article_authors A INNER JOIN authors B ON A.author_id=B.author_id WHERE A.article_id=$articleId ORDER BY A.id"; $resultAuthor = mysqli_query($dbpro,$sql); while ($rowAuthor = $resultAuthor->fetch_assoc()) { $authorName = $rowAuthor['first_name']; if (trim($rowAuthor['last_name'] <> '')) $authorName .= ' ' . $rowAuthor['last_name']; if (trim($rowAuthor['affiliation'] <> '')) $authorName .= ', ' . $rowAuthor['affiliation']; echo '<i class="fas fa-user-alt"></i> <a href="show.author.php?id=' . $rowAuthor['author_id'] . '"><span class="txtGrey">' . $authorName . '</span></a><br>'; } ?> <hr style="position:relative;border:none;height:1px;background-color:#d0d0d0;"> <?=$articleTxt?> </div> </div> <? } ?> </div> <div class="col-12 col-md-4"> <? include 'inc/side.php' ?> </div> </div> </div> <? include 'inc/footer.php' ?> </body> </html> </html>