-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.php
100 lines (86 loc) · 3.32 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php include("navbar.php") ?>
<!-- Start main-content -->
<div class="main-content">
<!-- Section: inner-header -->
<section class="inner-header divider layer-overlay overlay-theme-colored-7" data-bg-img="websiteimages/h3.png">
<div class="container pt-120 pb-60">
<!-- Section Content -->
<div class="section-content">
<div class="row">
<div class="col-md-6">
<h2 class="text-theme-colored2 font-36">Gallery</h2>
<ol class="breadcrumb text-left mt-10 white">
<li><a href="#">Home</a></li>
<li class="active">Gallery</li>
</ol>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Grid 3 -->
<section>
<div class="container">
<div class="section-content">
<div class="row">
<div class="col-md-12">
<!-- Portfolio Filter -->
<div class="portfolio-filter">
<a href="#design" class="" data-filter=".design">Images</a>
<a href="#photography" class="" data-filter=".photography">Media</a>
</div>
<!-- End Portfolio Filter -->
<!-- Portfolio Gallery Grid -->
<div id="grid" class="gallery-isotope default-animation-effect grid-4 gutter clearfix">
<?php
include("connection.php");
$get2 = mysqli_query($conn,"SELECT * FROM imgs");
while($row2 = mysqli_fetch_array($get2))
{
$id=$row2['id'];
$image=$row2['img'];
?>
<!-- Portfolio Item Start -->
<div class="gallery-item design">
<div class="thumb">
<div class="flexslider-wrapper">
<div class="flexslider">
<ul class="slides">
<li><a href="account/configure-site/galleryimages/<?php echo $image; ?>" title="Portfolio Gallery"><img src="account/configure-site/galleryimages/<?php echo $image; ?>" alt="<?php echo $image; ?>"></a></li>
</ul>
</div>
</div>
</div>
</div>
<?php
}
?>
<!-- Portfolio Item End -->
<!-- Portfolio Item Start -->
<div class="gallery-item photography">
<div class="thumb">
<a target = "_blank" href="account/configure-site/galleryimages/collegetour.mp4">
<img src="account/configure-site/galleryimages/collegetour.jpg" alt="">
</a>
</div>
</div>
<!-- Portfolio Item End -->
</div>
<!-- End Portfolio Gallery Grid -->
</div>
</div>
</div>
</div>
</section>
</div>
<!-- end main-content -->
<!-- Footer -->
<?php include("footer.php") ?>
<a class="scrollToTop" href="#"><i class="fa fa-angle-up"></i></a>
</div>
<!-- end wrapper -->
<!-- Footer Scripts -->
<!-- JS | Custom script for all pages -->
<script src="js/custom.js"></script>
</body>
</html>