-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.php
257 lines (161 loc) · 5.99 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
<!doctype html>
<?php
session_start();
include ('functions/functions.php');
include("includes/db.php");
;?>
<html>
<head>
<title>My Online Shop</title>
<link rel="stylesheet" href= "styles/style.css" media="all" />
</head>
<body>
<!--Main container starts here -->
<div class="main_wrapper">
<!--Header starts here -->
<div class="header_wrapper">
<a href="index.php"><img id="logo" src="images/logo.png"/></a>
<img id="banner" src="images/banner.png"/>
</div>
<!--Header ends here -->
<!--Navigation Bar starts here -->
<div class="menubar">
<ul id="menu">
<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="customer_register.php">Sign Up</a></li>
<li><a href="cart.php">Shooping Card</a></li>
<li><a href="contact_us.php">Contact Us</a></li>
</ul>
<div id="form">
<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>
</div>
<!--Navigation Bar ends here -->
<!--Content wrapper starts here -->
<div class="content_wrapper">
<div id="sidebar">
<div id="sidebar_title">Categories</div>
<ul id="cats">
<?php getCats();?>
</ul>
<div id="sidebar_title">Brends</div>
<ul id="cats">
<?php getBrands();?>
</ul>
</div>
<div id="content_area">
<?php cart(); ?>
<div id="shopping_cart" style="width:800px;height:50px;background:black;color:black;">
<div id="shopping_cart">
<span style="float:right; font-size:17px; padding:5px; line-height:40px;">
<?php
if(isset($_SESSION['customer_email'])){
echo "<b style='color:white'>Welcome:</b>" . $_SESSION['customer_email'] . "<b style='color:yellow;'>Your</b>" ;
}
else {
echo "<b style='color:white'>Welcome Guest:</b>";
}
?>
<b style="color:yellow">Shopping Cart -</b> <b style='color:white'>Total Items: <b style='color:white'><?php total_items(); ?>
</b <b style='color:white'> Total Price: </b> <a href="cart.php" style="color:yellow">Go to Cart</a>
<?php
if(!isset($_SESSION['customer_email'])){
echo "<a href='checkout.php' style='color:orange;'>Login</a>";
}
else {
echo "<a href='logout.php' style='color:orange;'>Logout</a>";
}
?>
</span>
</div>
<div id="product_box">
<form action="" method="post" enctype="multipart/form-data">
<table align="center" width="700" bgcolor="#D6DE23" color="black">
<tr align="center">
<th>Remove</th>
<th>Product(S)</th>
<th>Quantity</th>
<th>Total Price</th>
</tr>
<?php
$total = 0;
global $con;
$ip = getIp();
$sel_price = "select * from cart where ip_add='$ip'";
$run_price = mysqli_query($con, $sel_price);
while($p_price=mysqli_fetch_array($run_price)){
$pro_id = $p_price['p_id'];
$pro_price = "select * from products where product_id='$pro_id'";
$run_pro_price = mysqli_query($con,$pro_price);
while ($pp_price = mysqli_fetch_array($run_pro_price)){
$product_price = array($pp_price['product_price']);
$product_title = $pp_price['product_title'];
$product_image = $pp_price['product_image'];
$single_price = $pp_price['product_price'];
$values = array_sum($product_price);
$total += $values;
?>
<tr align="center">
<td><input type="checkbox" name="remove[]" value="<?php echo $pro_id;?>"/></td>
<td><?php echo $product_title; ?><br>
<img src="admin_area/product_images/<?php echo $product_image;?>" width="60" height="60"/>
</td>
<td><input type="text" size="6" name="qty" /></td>
<?php
if(isset($_POST['update_cart'])){
$qty = $_POST['qty'];
$update_qty = "update cart set qty='$qty'";
$run_qty = mysqli_query($con, $update_qty);
$_SESSION['qty']=$qty;
$total = $total*$qty;
}
?>
<td><?php echo "$" . $single_price; ?></td>
</tr>
<?php } } ?>
<tr>
<td colspan="4" align="right"><b>Sub Total:</b></td>
<td><?php echo "$" . $total;?></td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" name="update_cart" value="Update Cart"/></td>
<td><input type="submit" name="continue" value="Continue Shopping" /></td>
<td><button><a href="checkout.php" style="text-decoration:none; color:black;">Checkout</a></button></td>
</tr>
</table>
</form>
<?php
function updatecart(){
global $con;
$ip = getIp();
if(isset($_POST['update_cart'])){
foreach($_POST['remove'] as $remove_id){
$delete_product = "delete from cart where p_id='$remove_id' AND ip_add='$ip'";
$run_delete = mysqli_query($con, $delete_product);
if($run_delete){
echo "<script>window.open('cart.php','_self')</script>";
}
}
}
if(isset($_POST['continue'])){
echo "<script>window.open('index.php','_self')</script>";
}
}
echo @$up_cart = updatecart();
?>
</div>
</div>
</div>
<!--Content wrapper ends here -->
<div id="footer">
<h2 style="text-align:center; padding-top:30px;">© 2019 by <a href="https://zoranarichener.github.io/" > Zorana Richener </a></h2>
</div>
</div>
<!-- Main container ends here-->
</body>
</html>