|
Server IP : 2a02:4780:3:1493:0:3736:a38e:7 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux sg-nme-web1393.main-hosting.eu 4.18.0-553.77.1.lve.el8.x86_64 #1 SMP Wed Oct 8 14:21:00 UTC 2025 x86_64 User : u926327694 ( 926327694) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u926327694/domains/svschool.in/../petsisguledgudd.com/public_html/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php include "header.php"; ?>
<!-- ==============================================
** Inner Banner **
=================================================== -->
<div class="inner-banner blog">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="content">
<h1 style="color:#f47435">Gallery</h1>
</div>
</div>
</div>
</div>
</div>
<?php
include 'admin/pages/config/config.php';
// Connect to MySQL
// MySQL query that selects all the images
?>
<?php
$stmt =mysqli_query($con,"SELECT * FROM `gallery` ORDER BY `id` DESC");
?>
<!-- ==============================================
** News & Events **
=================================================== -->
<section class="campus-tour padding-lg" style="padding-top: 5px;padding-bottom: 5px;">
<div class="container">
<ul class="gallery clearfix" >
<?php
foreach ($stmt as $name) {
?>
<li>
<div class="overlay">
<a class="galleryItem" href="<?php echo "/admin/pages/Admin/".$name['photo']; ?>" ><span class="icon-enlarge-icon"></span></a>
</div>
<figure><img style="height:170px" src="<?php echo "/admin/pages/Admin/".$name['photo']; ?>" class="img-responsive" alt=""></figure>
</li>
<?php
}
?>
</ul>
</div>
</section>
<?php include "footer.php"; ?>
</body>
</html>