UnknownSec Bypass
403
:
/
var
/
www
/
stsupport
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
single.php
<?php include 'header.php';?> <div id="main-content"> <div class="container"> <div class="row"> <div class="col-md-8"> <!-- post-container --> <div class="post-container"> <?php include "config.php"; $post_id=$_GET['id']; $sql="SELECT post.post_id, post.title, post.description, post.post_date, post.post_img, category.category_name, user.username,post.category,post.author FROM post LEFT JOIN category ON post.category=category.category_id LEFT JOIN user ON post.author=user.user_id WHERE post_id={$post_id}"; $result=mysqli_query($conn,$sql) or die("Query Failed."); if(mysqli_num_rows($result)>0){ while ($row = mysqli_fetch_assoc($result)) { ?> <div class="post-content single-post"> <h3><?php echo $row['title']; ?></h3> <div class="post-information"> <span> <i class="fa fa-tags" aria-hidden="true"></i> <a href='category.php?cid=<?php echo $row['category']; ?>'><?php echo $row['category_name']; ?></a> </span> <span> <i class="fa fa-user" aria-hidden="true"></i> <a href='author.php?aid=<?php echo $row['author']; ?>'><?php echo $row['username']; ?></a> </span> <span> <i class="fa fa-calendar" aria-hidden="true"></i> <?php echo $row['post_date']; ?> </span> </div> <img class="single-feature-image" src="admin/upload/<?php echo $row['post_img']; ?>" alt=""/> <p class="description"> <?php echo $row['description']; ?> </p> </div> </div> <!-- /post-container --> <?php } }else { echo "No Record Found."; } ?> </div> <?php include 'sidebar.php'; ?> </div> </div> </div> <?php include 'footer.php'; ?>
Copyright © 2025 - UnknownSec