OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
accjournal
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/18/2024 06:33:29 AM
rwxr-xr-x
📄
about.php
2.42 KB
02/08/2022 02:27:36 PM
rw-r--r--
📁
accjournal
-
12/26/2021 06:46:23 AM
rwxr-xr-x
📁
cms
-
02/06/2022 09:24:57 AM
rwxr-xr-x
📄
contact.php
1.6 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
contributors.php
3.21 KB
02/08/2022 02:27:36 PM
rw-r--r--
📁
data
-
07/17/2025 12:14:38 PM
rwxrwxrwx
📄
editor.desk.php
4.17 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
editorial.php
5.39 KB
07/15/2022 06:28:48 AM
rw-r--r--
📁
grfx
-
02/06/2022 09:24:57 AM
rwxr-xr-x
📁
inc
-
05/19/2022 07:20:39 AM
rwxr-xr-x
📄
index.php
1.29 KB
05/13/2022 10:55:12 AM
rw-r--r--
📄
list.articles.php
4.28 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
list.authors.php
2.94 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
list.categories.php
2.45 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
list.volumes.php
3.6 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
puzzle.corner.php
987 bytes
02/08/2022 02:27:36 PM
rw-r--r--
📄
search.php
3.51 KB
05/20/2022 10:53:27 AM
rw-r--r--
📄
show.article.php
3.32 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
show.author.php
3.38 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
show.category.php
2.89 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
show.issue.php
3.87 KB
05/19/2022 06:18:04 AM
rw-r--r--
📄
show.topic.php
3.31 KB
05/20/2022 10:53:50 AM
rw-r--r--
📄
show.volume.php
2.65 KB
02/08/2022 02:27:36 PM
rw-r--r--
📄
z_editorial.php
4.01 KB
02/08/2022 02:27:36 PM
rw-r--r--
Editing: list.authors.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> <b style="font-size:15px">Authors</b><br> <div class="lineDotted"></div> <i class="fas fa-angle-right"></i> <a href="list.categories.php" style="font-size:15px">Categories</a><br> </div> <div class="col-12 col-md-6"> <div class="txtMedium txtBlue mb-2 py-2">Authors</div> <div class="row mt-3"> <div class="col-xs-12 col-sm-12 col-md-12 col-xl-12 col-lg-12 col-xl-12"> <ul class="list-inline"> <? for ($column='A';$column!='AA';$column++) { ?> <li class="list-inline-item"><a href="#jump-<?=$column?>"><?=$column?></a></li> <? } ?> </ul> </div> <? for ($column='A';$column!='AA';$column++) { ?> <div class="col-md-12 col-xs-12 col-sm-12 col-xl-12 col-lg-12"> <div class="pt40 pb20 mt-3" id="jump-<?=$column?>"> <div class="row"> <div class="col-md-1 col-xs-1 col-sm-1 col-xl-1 col-lg-1"> <div class="txtMedium"><?=$column?></div> </div> <div class="col-md-11 col-xs-11 col-sm-11 col-xl-11 col-lg-11"> <ul style="padding-left:20px"> <? $sql = "SELECT author_id,first_name,last_name FROM authors WHERE (last_name LIKE '$column%') OR (last_name='' AND first_name LIKE '$column%') ORDER BY first_name,last_name"; $query = mysqli_query($dbpro,$sql); while ($row = $query->fetch_assoc()) { if (trim($row['last_name'] == '')) { ?> <li class="mt-2"><a href="show.author.php?id=<?=$row['author_id']?>"><?=$row['first_name']?></a></li> <? } else { ?> <li class="mt-2"><a href="show.author.php?id=<?=$row['author_id']?>"><?=$row['first_name']?> <?=$row['last_name']?></a></li> <? } } mysqli_free_result($query); ?> </ul> </div> </div> </div> <div class="lineDotted"></div> </div> <? } ?> </div> </div> <div class="col-12 col-md-4"> <? include 'inc/side.php' ?> </div> </div> </div> <? include 'inc/footer.php' ?> </body> </html>