-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.php
81 lines (66 loc) · 2.18 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
<!DOCTYPE HTML>
<html>
<head>
<title>Gallery</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<!--[if lte IE 8]><script src="assets/gallery/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/gallery/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/gallery/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/gallery/css/ie8.css" /><![endif]-->
</head>
<body>
<?php
$servername = "localhost";
$username = "";
$password = "";
$dbname = "";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); }
$sql = 'SELECT event_url FROM event_gallery;';
$result = $conn->query($sql);
$count = 1;
?>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="gallery.php"><strong>D.J. Trinity</strong> Gallery</a></h1>
<nav>
<ul>
<!--<li><a href="#footer" class="icon fa-info-circle">About</a></li>-->
</ul>
<ul>
<li><a href="home.php">Home</a></li>
</nav>
</header>
<!-- Main -->
<div id="main">
<?php
while ($row=$result->fetch_assoc()) {
?>
<article class="thumb">
<a href="<?php echo $row['event_url'];?>" class="image"><img src="<?php echo $row['event_url'];?>" alt="" /></a>
<h2>
<?php
if ($count<13) { echo "IC CAR"; }
elseif ($count>=13) { echo "IDPT DANCE"; }
else{}
?>
</h2>
</article>
<?php
$count = $count + 1;
}
?>
</div>
</div>
<!-- Scripts -->
<script src="assets/gallery/js/jquery.min.js"></script>
<script src="assets/gallery/js/jquery.poptrox.min.js"></script>
<script src="assets/gallery/js/skel.min.js"></script>
<script src="assets/gallery/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/gallery/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/gallery/js/main.js"></script>
</body>
</html>