UnknownSec Bypass
403
:
/
var
/
www
/
santgyaneshwarji
/
mobileapp
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
shanka_category.php
<?php include "top.php"; include "banner.php"; ?> <style> /* pagination position styling */ .pagination_section { position: relative; } /* pagination styling */ .pagination_section a { color: black; padding: 10px 18px; text-decoration: none; } /* pagination hover effect on non-active */ .pagination_section a:hover:not(.active) { background-color: #031F3B; color: white; } /* pagination hover effect on active*/ a:nth-child(5) { background-color: green; color: white; } a:nth-child(1) { font-weight: bold; } a:nth-child(7) { font-weight: bold; } .card { box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); transition: 0.3s; width: 90%; border-radius: 5px; } .card:hover { box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); } img { border-radius: 5px 5px 0 0; } .container { padding: 10px 16px; } </style> <section class="w3l-about3"> <div class="story-inner-6 text-left py-5"> <div class="container pt-lg-4"> <div class="title-content text-left mb-lg-4 mb-4"> <h3 class="hny-title" style="text-align: center">Shankha <span>Samadhan</span></h3> </div> <div class="row align-items-center"> <?php $limit=20; if(isset($_GET['page'])){ $page=$_GET['page']; }else{ $page=1; } $offset= ($page-1)*$limit; $sql="SELECT * FROM shankasamadhancategorytb ORDER BY id 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-md-12 story-gd" style="padding: 20px; margin: 1px 4px; border: 1px solid #999999; background-color: #FFFFFF"> <a style="width:100%;" href="shanka_details.php?pid=<?php echo $row['id'];?>" class="btn btn-style btn-primary mt-lg-4 mt-3"><?php echo $row['category_name'];?></a> </div> <hr> <?php $serial++; } } ?> <br><br> </div> <!-- pagination elements --> </div> </div> </section> <!--//about--> <?php include "footer_all.php"; ?>
Copyright © 2025 - UnknownSec