UnknownSec Bypass
403
:
/
var
/
www
/
santgyaneshwarji
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
videos.php
<?php include "top.php";?> <style> .video-responsive{ overflow:hidden; padding-bottom:56.25%; position:relative; height:0; } .video-responsive iframe{ left:0; top:0; height:100%; width:100%; position:absolute; } </style> <!-- blog section --> <div class="w3l-blog-content py-5"> <div class="container py-md-5 py-4"> <div class="title-heading-w3 mx-auto text-center mb-5 pb-xl-4"> <h3 class="title-main"><?php echo $_GET['cat'];?></h3> </div> <div class="row justify-content-center"> <?php if(isset($_GET['cat'])) { $limit=8; if(isset($_GET['page'])){ $page=$_GET['page']; }else{ $page=1; } $offset= ($page-1)*$limit; $sql="SELECT * FROM videotb WHERE category='{$_GET['cat']}' ORDER BY id DESC LIMIT {$offset},{$limit}"; $result = mysqli_query($conn,$sql); if(mysqli_num_rows($result)>0){ $serial=$offset + 1; while ($row=mysqli_fetch_assoc($result)) { ?> <div class="col-lg-6 col-md-6"> <div class="card-header p-0 position-relative"> <div class="video-responsive"> <?php echo $row['discription'];?> </div> </div> <div class="card-body course-details"> <p><?php echo $row['title'];?></p> </div> </div> <?php $serial++; } } } ?> </div> <!-- pagination --> <div class="pagination-style mt-5 pt-lg-4"> <?php $sql1="SELECT * FROM videotb WHERE category='{$_GET['cat']}'"; $result1=mysqli_query($conn,$sql1) or die("Query Failed."); if(mysqli_num_rows($result1)>0){ $total_record=mysqli_num_rows($result1); $total_page= ceil($total_record/$limit); echo '<ul>'; if($page > 1){ echo '<li> <a href="videos.php?page='.($page - 1).'&cat='.$_GET['cat'].'"> <span class="fas fa-angle-double-left" aria-hidden="true"></span> </a> </li>'; } for($i=1; $i<=$total_page; $i++){ if($i==$page) { $active="active"; }else { $active=""; } echo '<li><a class="'. $active .'" href="videos.php?page=' .$i. '&cat='.$_GET['cat'].'">' .$i. '</a></li>'; } if($total_page>$page){ echo '<li><a href="videos.php?page='.($page + 1).'&cat='.$_GET['cat'].'"><span class="fas fa-angle-double-right" aria-hidden="true"></span></a></li>'; } echo '</ul>'; } ?> </div> <!-- //pagination --> </div> </div> <!-- //blog section --> <?php include "footer.php";?>
Copyright © 2025 - UnknownSec