-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.php
More file actions
26 lines (20 loc) · 986 Bytes
/
gallery.php
File metadata and controls
26 lines (20 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php include('include/currentPage_header.php') ?>
<!-- Dynamically fetching the photos from GALLERY -->
<div class="photo-gallery">
<div class="container">
<div class="intro">
<h2 class="text-center">Hotel Elite Gallery</h2>
<p class="text-center">All of the images are capture inside our hotel Elite </p>
</div>
<div class="row photos">
<?php
$dirname = "assets/picture/gallery/";
$images = glob($dirname."*.*");
foreach($images as $image) {
echo ' <div class="col-sm-6 col-md-4 col-lg-3 item"><a href="'.$image.'" data-lightbox="photos"><img class="img-fluid gallery-images img-thumbnail" src="'.$image.'"></a></div>';
}
?>
</div>
</div>
</div>
<?php include('include/footer.php')?>