-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshoppingcart.php
209 lines (197 loc) · 8.92 KB
/
shoppingcart.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
<?php
session_start();
$con = mysqli_connect("localhost","root","","emeal");
if (isset($_GET["action"])){
if ($_GET["action"] == "delete"){
$uid = $_SESSION["userId"];
$pid = $_GET["id"];
$deletecart_query = "DELETE FROM `cart` WHERE `pId` = '$pid' AND `uId` = '$uid'";
$delete_result = mysqli_query($con, $deletecart_query);
echo '<script>alert("Product has been Removed...!")</script>';
echo '<script>window.location="shoppingcart.php"</script>';
}
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Signika" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
<script type="text/javascript" src="https://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5ab88174f9a49214"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<script type="text/javascript">
function fmoney(s, n) {
n = n > 0 && n <= 20 ? n : 2;
s = parseFloat((s + "").replace(/[^\d\.-]/g, "")).toFixed(n) + "";
var l = s.split(".")[0].split("").reverse(),
r = s.split(".")[1];
t = "";
for (i = 0; i < l.length; i++) {
t += l[i] + ((i + 1) % 3 == 0 && (i + 1) != l.length ? "," : "");
}
return t.split("").reverse().join("") + "." + r;
}
<?php if(isset($_SESSION['user'])&&!empty($_SESSION['user'])){?>
$(document).ready(function(){
$("#sign").hide();
$("#user").show();
});
<?php }?>
$(document).ready(function(){
$(".add").click(function(){
var n=$(this).prev().val();
var num=parseInt(n)+1;
if(num==0){
return;
}
$(this).prev().val(num);
var price = fmoney($(this).parent().parent().parent().find(".item_price").text(),2);
var sum = num * price; $(this).parent().parent().parent().find(".item_total").text(fmoney(sum,2));
getTotal();
});
$(".detail-page").find(".list_box").each(function(){
var itemprice = $(this).children().children().find(".item_price").text();
var number = $(this).children().children().find(".num").val();
var price= fmoney(itemprice * number,2);
$(this).children().children().find(".item_price").text(fmoney(itemprice,2));
$(this).children().children().find(".item_total").text(price);
});
$(".min").click(function(){
var n=$(this).next().val();
var num=parseInt(n)-1;
if(num==0){ return}
$(this).next().val(num);
var price = fmoney($(this).parent().parent().parent().find(".item_price").text(),2);
var sum = num * price; $(this).parent().parent().parent().find(".item_total").text(fmoney(sum,2));
getTotal();
});
$(".remove_btn").click(function(){
$(this).parent().parent().parent().remove();
getTotal();
});
function getTotal(){
var priceTotal = 0;
$(".detail-page").find(".list_box").each(function(){
priceTotal += parseFloat($(this).find(".item_total").text());
})
$("#price_total").text(fmoney(priceTotal,2));
}
getTotal();
});
</script>
</head>
<body>
<div id="navigation">
<div id="title">
<div class="addthis_inline_share_toolbox_20fu"></div>
<p>e<span>MEAL</span></p>
<div id="sign">
<ul>
<li><a href="login.html">Sign in</a></li>
<li><a href="signup.php">Sign up</a></li>
</ul>
</div>
<div id="user">
<ul>
<li>Welcome, <a><?php echo $_SESSION['user']?></a>
<ul class="subnav2">
<li><a href="userProfile.php">Profile</a></li>
<li><a href="includes/logout.php">Log out</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="get_nav"></div>
<div id="shoppingcart">
<a href="shoppingcart.php">
<img src="img/713b83a7ab70e1a79d66d49efc33aff6.png">
<p>Shopping cart</p>
</a>
</div>
</div>
<div class="gray">
<div class="tabbar">
<ol class="breadcrumb">
<li><a href="shoppinggeneral.php">Shopping</a></li>
<li class="active">Cart</li>
</ol>
</div>
<div class="cart-page">
<div class="detail-page">
<div class="list_title">
<div class="row">
<div class="col-md-2"><p>Item</p></div>
<div class="col-md-3"><p>Name</p></div>
<div class="col-md-1"><p>Price</p></div>
<div class="col-md-2"><p>Quantity</p></div>
<div class="col-md-2"><p>Total</p>
</div>
<div class="col-md-1"><p>Remove</p></div>
</div>
</div>
<?php
$uid = $_SESSION['userId'];
$total = 0;
$retrievefromcart_query = "SELECT a.pId, b.productName, a.quantity, b.productPrice, b.productImage FROM cart a,product b WHERE a.pId = b.productId AND a.uId = '$uid';";
$retrieve_result = mysqli_query($con,$retrievefromcart_query);
if(mysqli_num_rows($retrieve_result) > 0) {
while ($cartrow = mysqli_fetch_array($retrieve_result)) {
?>
<div class="list_box">
<div class="row">
<div class="col col-md-2">
<img src="productimage/<?php echo $cartrow["productImage"];?>" alt="Item img">
</div>
<div class="col col-md-3">
<p class="item_name"><?php echo $cartrow['productName']; ?></p>
</div>
<div class="col col-md-1 unit_price"><p class="dollar_sign">$</p><p class="item_price"><?php echo $cartrow['productPrice']; ?></p>
</div>
<div class="col col-md-2">
<div class="quantity_num">
<em class="min">-</em>
<input type="text" value="<?php echo $cartrow['quantity']; ?>" class="num"/>
<em class="add">+</em>
</div>
</div>
<div class="col col-md-2">
<div class="sign_price">
<p class="dollar_sign">$</p><p class="item_total">Total</p>
</div>
</div>
<div class="col col-md-1">
<a href="shoppingcart.php?action=delete&id=<?php echo $cartrow["pId"]; ?>"><span
class="remove_btn">x</span></a>
</div>
</div>
</div>
<?php
}
}?>
<div class="checkout">
<div class="check_price">
<p><span>Total price</span></p><div class="sign_price">
<p class="dollar_sign">$</p><p id="price_total">Total</p>
</div>
</div>
<div class="clearfloat"></div>
<input type="button" class="recipe-btn" value="Check out">
</div>
<div class="clearfloat"></div>
</div>
</div>
<div class="clearfloat"></div>
</div>
<div id="footer">
<p>©2018 eMeal Company. All Rights Reserved</p>
</div>
</body>
</html>