-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.php
354 lines (327 loc) · 14.6 KB
/
product.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
<?php
require 'common.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>Products | Lifestyle Store</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<?php
include 'header.php';
include 'check_if_added.php';
?>
<div class="container">
<div class="jumbotron text-center container-fluid" style="padding-top: 8%">
<h1>Welcome to our Lifestyle Store!</h1>
<p>We have the best cameras, watches and shirts for you. No need to hunt around, we have all in one place.</p>
</div>
<hr>
<div class="row text-center" id="camera">
<div class="col-md-3">
<div class="thumbnail">
<img src="img/5.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>Canon EOS</h3>
<p>Rs. 36000.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(1)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=1" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
<div class="col-md-3">
<div class="thumbnail">
<img src="img/3.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>Nikon DSLR</h3>
<p>Rs. 40000.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(2)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=2" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
<div class="col-md-3">
<div class="thumbnail">
<img src="img/2.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>Sony DSLR</h3>
<p>Rs. 45000.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(3)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=3" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
<div class="col-md-3">
<div class="thumbnail">
<img src="img/4.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>Olympus DSLR</h3>
<p>Rs. 50000.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(4)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=4" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
</div>
<!--end of cameras row
//start of watches row-->
<div class="row text-center" id="watch">
<div class="col-md-3">
<div class="thumbnail">
<img src="img/18.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>Titan Model #301</h3>
<p>Rs. 13000.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(5)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=5" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
<div class="col-md-3">
<div class="thumbnail">
<img src="img/19.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>Titan Model #201</h3>
<p>Rs. 3000.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(6)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=6" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
<div class="col-md-3">
<div class="thumbnail">
<img src="img/20.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>HMT Milan</h3>
<p>Rs. 8000.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(7)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=7" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
<div class="col-md-3">
<div class="thumbnail">
<img src="img/21.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>Faber Luba #111</h3>
<p>Rs. 18000.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(8)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=8" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
</div>
<!--end of watches row
//start of shirt row-->
<div class="row text-center" id="shirt">
<div class="col-md-3">
<div class="thumbnail">
<img src="img/13.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>H&W</h3>
<p>Rs. 800.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(9)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=9" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
<div class="col-md-3">
<div class="thumbnail">
<img src="img/23.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>Luis Phil</h3>
<p>Rs. 1000.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(10)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=10" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
<div class="col-md-3">
<div class="thumbnail">
<img src="img/24.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>John Zok</h3>
<p>Rs. 1500.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(9)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=11" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
<div class="col-md-3">
<div class="thumbnail">
<img src="img/13.jpg" class="image-responsive" alt="">
<div class="caption">
<h3>Jhalsani</h3>
<p>Rs. 1300.00</p>
<?php
if(isset($_SESSION['email'])){?>
<p><a href="login.php" class="btn btn-block btn-primary" role="button">Buy Now</p>
<?php
}
else{
if(check_if_added_to_cart(12)){
echo '<a href="#" class="btn btn-block btn-success" disabled>Added to cart</a>';
}
else{
?>
<a href="cart-add.php?id=12" name="add" value="add" class="btn btn-block btn-primary">Add to cart</a>
<?php }
}
?>
</div>
</div>
</div>
</div>
</div>
</body>
<?php
include 'footer.php';
?>
</html>