-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.php
More file actions
259 lines (226 loc) · 9.75 KB
/
cart.php
File metadata and controls
259 lines (226 loc) · 9.75 KB
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
<!-- connect file-->
<?php
include('includes/connect.php');
include('functions/common_functions.php');
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-Commerce website-cart details</title>
<!-- bootstrap css link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css">
<!-- font awsome link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- css link -->
<link rel="stylesheet" href="style.css">
<style>
.cart_img{
width:50px;
height:50px;
object-fit: contain;
}
body{
overflow-x: hidden;
}
</style>
</head>
<body>
<!-- navbar -->
<div class="container-fluid p-0">
<!-- first child -->
<nav class="navbar navbar-expand-lg bg-info">
<div class="container-fluid">
<img src="./images/logo.jpg" alt="" class="logo">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.php">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="display_all.php">Products</a>
</li>
<?php
if(isset($_SESSION['username'])){
echo " <li class='nav-item'>
<a class='nav-link' href='./users_area/profile.php'>My Account</a>
</li>";
}else{
echo" <li class='nav-item'>
<a class='nav-link' href='./users_area/user_registration.php'>Register</a>
</li>";
}
?>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cart.php"><i class="fa-solid fa-cart-shopping"></i><sup><?php cart_item(); ?></sup></a>
</li>
</ul>
</div>
</div>
</nav>
<!-- calling cart function -->
<?php
cart();
?>
<!-- Second child -->
<nav class="navbar navbar-expand-lg navbar-dark bg-secondary">
<ul class="navbar-nav me-auto">
<?php
if(!isset($_SESSION['username'])){
echo " <li class='nav-item'>
<a class='nav-link' href='#'>Welcome Guest</a>
</li>";
}else{
echo "<li class='nav-item'>
<a class='nav-link' href='#'>Welcome ".$_SESSION['username']."</a>
</li>";
}
if(!isset($_SESSION['username'])){
echo " <li class='nav-item'>
<a class='nav-link' href='./users_area/user_login.php'>Login</a>
</li>";
}else{
echo "<li class='nav-item'>
<a class='nav-link' href='./users_area/logout.php'>Logout</a>
</li>";
}
?>
</ul>
</nav>
<!-- third child -->
<div class="bg-light">
<h3 class="text-center">
Hidden Store
</h3>
<p class="text-center">
Communication is at the heart of e-commerce and community
</p>
</div>
<!-- fourth child -table-->
<div class="container">
<div class="row">
<form action="" method="post">
<table class="table table-bordered text-center">
<tbody>
<!-- php code yto display dynamic data -->
<?php
global $con;
$ip = getIPAddress(); //::1
$total = 0;
$cart_query="Select * From `cart_details` where ip_address='$ip'";
$result=mysqli_query($con,$cart_query);
$result_count=mysqli_num_rows($result);
if($result_count >0){
echo"
<thead>
<tr>
<th>Product Title</th>
<th>Product Image</th>
<th>Quantity</th>
<th>Total Price</th>
<th>Remove</th>
<th colspan='2'>Operations</th>
</tr>
</thead>
";
while($row=mysqli_fetch_array($result)){
$product_id=$row['product_id'];
$select_products= "Select * From `products` where product_id='$product_id'";
$result_products=mysqli_query($con,$select_products);
while($row_product_price=mysqli_fetch_array($result_products)){
$product_price=array($row_product_price['product_price']);
$price_table=$row_product_price['product_price'];
$product_title=$row_product_price['product_title'];
$product_image1=$row_product_price['product_image1'];
$product_values=array_sum($product_price); //[200]
$total+=$product_values; //0+200 = 200;
?>
<tr>
<td><?php echo $product_title; ?></td>
<td><img src="./admin_area/product_images/<?php echo $product_image1; ?>" class ="cart_img" alt=""></td>
<td><input type="text" name="qty"class="form-input w-50"></td>
<?php
$ip = getIPAddress();
if(isset($_POST['update_cart'])){
$quantities = $_POST['qty'];
$update_cart="update `cart_details` set quantity=$quantities where ip_address='$ip'";
$result_products_quantity=mysqli_query($con,$update_cart);
$total=$total*$quantities;
}
?>
<td><?php echo $price_table; ?>/-</td>
<td><input type="checkbox" name="removeitem[]" value="<?php echo $product_id ?>"></td>
<td>
<!-- <button class="btn btn-info px-3 py-2 mx-3">Update</button> -->
<input type="submit" value="Update Cart" class="btn btn-info px-3 py-2 mx-3" name="update_cart">
<!-- <button class="btn btn-dark px-3 py-2 mx-3">Remove</button>
-->
<input type="submit" value="Remove Cart" class="btn btn-info px-3 py-2 mx-3" name="remove_cart">
</td>
</tr>
<?php
}
}}
else{
echo "<h2 class='text-center text-danger'>Cart is Empty</h2>";
}
?>
</tbody>
</table>
<!-- subtotal -->
<div class="d-flex mb-5">
<?php
$ip = getIPAddress(); //::1
$cart_query="Select * From `cart_details` where ip_address='$ip'";
$result=mysqli_query($con,$cart_query);
$result_count=mysqli_num_rows($result);
if($result_count>0){
echo " <h4 class='px-3'>Subtotal:<strong class='text-info'>$total/-</strong></h4>
<input type='submit' value='Continue Shopping' class='btn btn-info px-3 py-2 mx-3' name='continue_shopping'>
<button class='btn btn-dark px-3 py-2 mx-3'><a href='./users_area/checkout.php' class='text-decoration-none'>Check Out</a></button>";
}else{
echo "<input type='submit' value='Continue Shopping' class='btn btn-info px-3 py-2 mx-3' name='continue_shopping'>";
}
if(isset($_POST['continue_shopping'])){
echo "<script>window.open('index.php','_self')</script>";
}
?>
</div>
</div>
</div>
</form>
<!-- function to remove item -->
<?php
function remove_cart_item(){
global $con;
if(isset($_POST['remove_cart'])){
foreach($_POST['removeitem'] as $remove_id){
echo $remove_id;
$delete_query="Delete from `cart_details` where product_id=$remove_id";
$run_delete=mysqli_query($con,$delete_query);
if($run_delete){
echo "<script>window.open('cart.php','_self')</script>";
echo "<script>alert('product has been deleted')</script>";
}
}
}
}
echo $remove_item=remove_cart_item();
?>
<!-- last child -->
<!-- include footer -->
<?php include("./includes/footer.php"); ?>
</div>
<!-- bootstrap js link -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></>
</body>
</html>