File "gallery.php"
Full path: /home/fsibplc/public_html/fsib/section/century section/gallery.php
File
size: 1006 B (1006 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
<div class="container">
<div class="section-title">
<span>Gallery</span>
<h2>At a Glance</h2>
<p>Explore our events, photos, seminars on higher study exhibitions for students and professionals.
</p>
</div>
<div class="container1">
<?php
// $slug = mysqli_real_escape_string($con, $_GET['title']);
$services = "SELECT gallery.* FROM categories INNER JOIN gallery ON categories.id = gallery.category_id Where categories.name = 'At a Glance'";
$services_run = mysqli_query($con, $services);
if (mysqli_num_rows($services_run) > 0) {
foreach ($services_run as $serviceitem) {
?>
<img src="uploads/gallery/<?=$serviceitem['image'];?>">
<!--dynamic end-->
<?php }
} else {
?>
<h4>No Such Image Found</h4>
<?php
}?>
</div>
</div>