-
Notifications
You must be signed in to change notification settings - Fork 13
/
cart.php
509 lines (411 loc) · 15.5 KB
/
cart.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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
<?php
session_start();
include("includes/db.php");
include("functions/functions.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Home | K-shop</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/price-range.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head><!--/head-->
<body>
<header id="header"><!--header-->
<div class="header_top"><!--header_top-->
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="contactinfo">
<ul class="nav nav-pills">
<li><a href="#"><i class="fa fa-phone"></i> +1234567890 </a></li>
<li><a href="#"><i class="fa fa-envelope"></i> chun@github.com</a></li>
</ul>
</div>
</div>
<div class="col-sm-6">
<div class="social-icons pull-right">
<ul class="nav navbar-nav">
<li><a href="http://www.fb.com/kingston.fortune2"><i class="fa fa-facebook"></i></a></li>
<li><a href="http://www.twitter.com/@chun__king"><i class="fa fa-twitter"></i></a></li>
<li><a href="http://www.linkedin.com/kingstonfortune"><i class="fa fa-linkedin"></i></a></li>
<li><a href="http://www.dribbble.com/kingstonfortune"><i class="fa fa-dribbble"></i></a></li>
<li><a href="http://plus.google.com/kingstonfortune"><i class="fa fa-google-plus"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div><!--/header_top-->
<div class="header-middle"><!--header-middle-->
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="logo pull-left">
<a href="index.php"><img src="images/home/logo1.png" alt="" /></a>
</div>
</div>
<div class="col-sm-8">
<div class="shop-menu pull-right">
<ul class="nav navbar-nav">
<li><a href="cart.php"><i class="fa fa-shopping-cart"></i> Cart</a></li>
<?php
if(!isset($_SESSION['customer_email']))
{
//echo "<a href='checkout.php'> Login</a>";
echo "<li><a href='customer/customer_login.php'><i class='fa fa-lock'></i> Login</a></li>";
}
else
{
echo "<li><a href='logout.php'><i class='fa fa-lock'></i> Logout</a></li>";
}
?>
</ul>
</div>
</div>
<?php
cart();
?>
<?php
if(!isset($_SESSION['customer_email']))
{
echo "<b> Welcome Guest! </b>";
}
else
{
$userName = $_SESSION['customer_email'];
echo "<b style='color: #fdb45e;'> Welcome: $userName! </b>";
}
?>
<b style=" color: #fdb45e;">Shopping Cart:</b>
<span>-Total Items: <?php itemsFromCart(); ?> - Total Price: #<?php getTotalPrice(); ?></span>
</div>
</div>
</div><!--/header-middle-->
<div class="header-bottom"><!--header-bottom-->
<div class="container">
<div class="row">
<div class="col-sm-9">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="mainmenu pull-left">
<ul class="nav navbar-nav collapse navbar-collapse">
<li><a href="index.php">Home</a></li>
<li><a href="all_products.php">All Products</a></li>
<li><a href="customer/my_account.php">My Account</a></li>
<li><a href="/kshop/cart.php" class="active">Shopping Cart</a></li>
<li><a href="contact.php">Contact Us</a></li>
<li><a href="admin_area/login/login.php"><b>Admin Login</b></a></li>
</ul>
</div>
</div>
<!--Search Box starts-->
<div>
<form method="get" action="results.php" enctype="multipart/form-data">
<input type="text" name="user_query" placeholder="Search a Product"/>
<input type="submit" name="search" value="Search"/>
</form>
</div>
<!--Search Box ends-->
</div>
</div>
</div><!--/header-bottom-->
</header><!--/header-->
<section id="slider"><!--slider-->
<div class="container">
<div class="row">
<div class="col-sm-12">
<div id="slider-carousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#slider-carousel" data-slide-to="0" class="active"></li>
<li data-target="#slider-carousel" data-slide-to="1"></li>
<li data-target="#slider-carousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<div class="col-sm-6">
<h1><span>K</span>-shop</h1>
<h2>K-Shop</h2>
<p>Delivering the very best of consumer products around the world. Every one of our products gives you 100% satisfaction.</p>
<button type="button" class="btn btn-default get">Get it now</button>
</div>
<div class="col-sm-6">
<img src="images/home/videocam.jpg" class="girl img-responsive" alt="" />
</div>
</div>
<div class="item">
<div class="col-sm-6">
<h1><span>K</span>-shop</h1>
<h2>K-Shop</h2>
<p>Delivering the very best of consumer products around the world. Every one of our products gives you 100% satisfaction. </p>
</div>
<div class="col-sm-6">
<img src="images/home/tablet.jpg" class="girl img-responsive" alt="" />
</div>
</div>
<div class="item">
<div class="col-sm-6">
<h1><span>K</span>-shop</h1>
<h2>K-Shop</h2>
<p>Delivering the very best of consumer products around the world. Every one of our products gives you 100% satisfaction.</p>
<button type="button" class="btn btn-default get">Get it now</button>
</div>
<div class="col-sm-6">
<img src="images/home/smarttv.jpg" class="girl img-responsive" alt="" />
<
</div>
</div>
</div>
<a href="#slider-carousel" class="left control-carousel hidden-xs" data-slide="prev">
<i class="fa fa-angle-left"></i>
</a>
<a href="#slider-carousel" class="right control-carousel hidden-xs" data-slide="next">
<i class="fa fa-angle-right"></i>
</a>
</div>
</div>
</div>
</div>
</section><!--/slider-->
<section>
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="left-sidebar">
<h2>Categories</h2>
<div class="panel-group category-products" id="accordian"><!--category-products start-->
<div class="category-tab ul li ">
<ul class="nav nav-pills nav-stacked" id="categories">
<?php getCategories(); ?>
</ul>
</div>
</div><!--/category-products ends-->
<div class="brands_products"><!--brands_products start-->
<h2>Brands</h2>
<div class="category-tab ul li ">
<ul class="nav nav-pills nav-stacked" id="brands">
<?php getBrands();
?>
</ul>
</div>
</div><!--/brands_products Ends-->
<div class="shipping text-center"><!--shipping stars-->
<img src="images/home/shipping.jpg" alt="" />
</div><!--/shipping Ends-->
</div>
</div>
<div class="col-sm-9 padding-right">
<?php
//$ip = getRealIpAddress();
//echo $ip;
?>
<div class="features_items" id="products_box"><!--features_items start-->
<h2 class="title text-center">Your Cart Items</h2>
<form action="cart.php" method="post" enctype="multipart/form-data">
<table width="740" align="center" bgcolor="#0099CC">
<tr align="center" bgcolor="#FE980F">
<td><b>Remove</b></td>
<td><b>Products(s)</b></td>
<td><b>Quantity</b></td>
<td><b>Total Price</b></td>
</tr>
<?php
$ip_add = getRealIpAddress();
$total =0;
// get item based on Ip from cart table
$select_price = "select * from cart where ip_add = '$ip_add'";
$run_price = mysqli_query($con, $select_price);
while($record=mysqli_fetch_array($run_price))
{
$product_id = $record['p_id'];
$item_quantity = $record['qty'];
$prod_price = "select * from products where product_id = '$product_id'";
$run_product_price = mysqli_query($con, $prod_price);
while($p_price=mysqli_fetch_array($run_product_price))
{
$product_price = array($p_price['product_price']); //get product price from table column in DB
$product_title = $p_price['product_title'];
$product_image = $p_price['product_img1'];
$value = array_sum($product_price)*$item_quantity; // sum all the values
$only_price = array_sum($product_price)*$item_quantity;
$total += $value;
//will loop creating checkboxes as products are being added to cart
// adding all the neccessary info on relevant clolumns of the cart table
?>
<tr>
<td><input type="checkbox" name="remove[]" value="<?php echo $product_id; ?>"></td>
<td><?php echo $product_title ?><br><img src='admin_area/product_images/<?php echo $product_image ?>' width='80' height='80'/> </td>
<td> <label for="male"><?php echo "$item_quantity" ?></label> </td>
<td><?php echo "#".$only_price ?></td>
</tr>
<?php }} ?>
<tr>
<td colspan="3" align="right" style="text-decoration:none; color:#0000CC"><b>Sub Total</b></td>
<td style="text-decoration:none; color:#0000CC"><b><?php echo "#".$total ?></b></td>
</tr>
<tr align="center">
<td><input type="submit" name="update" value="Update Cart" style="text-decoration:none; color:#0000CC"/></td>
<td><input type="submit" name="continue" value="Continue Shopping" style="text-decoration:none; color:#0000CC"/></td>
<td><button name="check"><a href="/customer/customer_login.php" style="text-decoration:none; color:#0000CC;">Checkout</a></button></td>
<td></td>
</tr>
</table>
</form>
<?php
if(isset($_POST['check']) and isset($_SESSION['customer_email']))
{
if($total != 0)
{echo "<script>window.open('/kshop/customer/checkout.php','_blank')</script>";}
}
elseif(isset($_POST['check']) and !isset($_SESSION['customer_email']))
{
if($total != 0)
{echo "<script>window.open('/kshop/customer/customer_login.php','_blank')</script>";}
}
?>
<?php
function updateCart()
{
global $con;
// for the update button
if(isset($_POST['update']))
{
// post back for all the checkboxes inside update button checked - based on chekb name = remove[]
foreach($_POST['remove'] as $remove_id)
{
$delete_products = "delete from cart where p_id = '$remove_id' ";
$run_delete = mysqli_query($con, $delete_products);
if($run_delete)
{
// update cart page and refresh
echo "<script>window.open('cart.php','_self')</script>";
}
}//foreach
//
}
if(isset($_POST['continue']))
{
echo "<script>window.open('all_products.php','_self')</script>";
}
}
echo @$up_cart = updateCart();
?>
</div><!--features_items Ends-->
</div><!--/category-tab-->
</div>
</div>
</div>
</section>
<footer id="footer"><!--Footer-->
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-sm-2">
<div class="companyinfo">
<h3><span>K</span>-Shop</h3>
<p>We provide the very best of consumer products all around the globe.</p>
</div>
</div>
<div class="col-sm-7">
<div class="col-sm-3">
<div class="video-gallery text-center">
<a href="#">
<div class="iframe-img">
<img src="images/home/iframe1.png" alt="" />
</div>
<div class="overlay-icon">
<i class="fa fa-play-circle-o"></i>
</div>
</a>
<p>Cliffs Of Moher</p>
<h2>24 April 2015</h2>
</div>
</div>
<div class="col-sm-3">
<div class="video-gallery text-center">
<a href="#">
<div class="iframe-img">
<img src="images/home/iframe2.png" alt="" />
</div>
<div class="overlay-icon">
<i class="fa fa-play-circle-o"></i>
</div>
</a>
<p>St Patrick's Day</p>
<h2>17 March 2015</h2>
</div>
</div>
<div class="col-sm-3">
<div class="video-gallery text-center">
<a href="#">
<div class="iframe-img">
<img src="images/home/iframe3.png" alt="" />
</div>
<div class="overlay-icon">
<i class="fa fa-play-circle-o"></i>
</div>
</a>
<p>Map Of Nigeria</p>
<h2>24 DEC 2015</h2>
</div>
</div>
<div class="col-sm-3">
<div class="video-gallery text-center">
<a href="#">
<div class="iframe-img">
<img src="images/home/iframe4.png" alt="" />
</div>
<div class="overlay-icon">
<i class="fa fa-play-circle-o"></i>
</div>
</a>
<p>Fupre Campus</p>
<h2>24 May 2015</h2>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="address">
<img src="images/home/map.png" alt="" />
<p>K-Shop, A Product of Fortune - Fupre, Nigeria</p>
</div>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<div class="row">
<p class="pull-left">Copyright © 2015 K-Shop Inc. All rights reserved.</p>
<p class="pull-right">Designed by <span><a target="_blank">King Fortune</a></span></p>
</div>
</div>
</div>
</footer><!--/Footer-->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.scrollUp.min.js"></script>
<script src="js/price-range.js"></script>
<script src="js/jquery.prettyPhoto.js"></script>
<script src="js/main.js"></script>
</body>
</html>