-
Notifications
You must be signed in to change notification settings - Fork 3
/
photoGallary.php
105 lines (98 loc) · 2.67 KB
/
photoGallary.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
101
102
103
104
105
<?php
$defineVariablesPhp = "defineVariables.php";
require $defineVariablesPhp;
require $dbConnectPhp;
require $queryFunctionsPhp;
require $phpFunctionsPhp;
?>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=divice-width, initial-scale=1.0">
<title>Nishi Agarwal</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/customIndex.css">
</head>
<body>
<div class="container">
<?php require("header.php"); ?>
<hr>
<section>
<div class="row">
<div>
<h3><span>Gallary</span></h3>
</div>
</div>
</section>
<hr>
<section>
<?php
$allPhotoRowArray = querySelectAllRows($photoTableName);
for($i=0;$i<count($allPhotoRowArray);$i+=$noOfPhotosInRow)
{
echo addPhotoRow($allPhotoRowArray, $i, $noOfPhotosInRow);
}
?>
</section>
<hr>
<?php require("footer.php"); ?>
</div>
<!-- Modals Start-->
<?php require("modal.php"); ?>
<!-- Modals end -->
<!-- JavaScript -->
<script type="text/javascript" src="js/jquery-3.1.0.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>
<!-- Templates -->
<!-- Gallery Row template -->
<!--
<div class="row thumbnail-div">
<div class="height-100 col-lg-4 col-md-4 col-sm-4 col-xs-4">
<div class="thumbnail">
<a href="">
<div>
<img src="Images/Artists_Palette.jpg" class="thumbnail-img">
</div>
<div class="caption thumbnail-body" >
<div><h4><span>SAVOR THE COLORS OF THE MOMENT</span></h4></div>
<div>
<p><span>BRING HOME THE NAPA VALLEY WITH "TEARING VINES" BY ANN REA, AN ORIGINAL OIL PAINTING</span></p>
</div>
</div>
</a>
</div>
</div>
<div class="height-100 col-lg-4 col-md-4 col-sm-4 col-xs-4">
<div class="thumbnail">
<a href="">
<div>
<img src="Images/Peacock.jpg" class="thumbnail-img">
</div>
<div class="caption thumbnail-body">
<div><h4><span>SAVOR THE COLORS OF THE MOMENT</span></h4></div>
<div>
<p><span>BRING HOME THE NAPA VALLEY WITH "TEARING VINES" BY ANN REA, AN ORIGINAL OIL PAINTING</span></p>
</div>
</div>
</a>
</div>
</div>
<div class="height-100 col-lg-4 col-md-4 col-sm-4 col-xs-4">
<div class="thumbnail">
<a href="">
<div>
<img src="Images/ScenaryCycle.jpg" class="thumbnail-img">
</div>
<div class="caption thumbnail-body">
<div><h4><span>SAVOR THE COLORS OF THE MOMENT</span></h4></div>
<div>
<p><span>BRING HOME THE NAPA VALLEY WITH "TEARING VINES" BY ANN REA, AN ORIGINAL OIL PAINTING</span></p>
</div>
</div>
</a>
</div>
</div>
</div>
-->