-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.php
50 lines (44 loc) · 1.2 KB
/
gallery.php
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php include "header.php"; ?>
<!-- Start All Pages -->
<div class="all-page-title page-breadcrumb">
<div class="container text-center">
<div class="row">
<div class="col-lg-12">
<h1>Gallery</h1>
</div>
</div>
</div>
</div>
<!-- End All Pages -->
<!-- Start Gallery -->
<div class="gallery-box">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="heading-title text-center">
<h2>Gallery</h2>
<p>Deliciousness jumping into the mouth</p>
</div>
</div>
</div>
<div class="tz-gallery">
<div class="row">
<?php
include "connect.php";
$s = mysqli_query($con,"select * from gallery");
while($r = mysqli_fetch_array($s))
{
?>
<div class="col-sm-12 col-md-4 col-lg-4">
<a class="lightbox" href="<?php echo "admin/".$r['image']; ?>">
<img class="img-fluid" src="<?php echo "admin/".$r['image']; ?>" alt="Gallery Images" style="width: 350px; height: 250px;"
>
</a>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
<!-- End Gallery -->
<?php include "footer.php"; ?>