forked from Astha1404/charvi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cart.php
193 lines (191 loc) · 9.09 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
<!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>Document</title>
<?php require_once 'header.php'; ?>
</head>
<body>
<?php
if(!isset($_SESSION))
{
session_start();
}
if(!isset($_SESSION['email']))
{
header('Location: /charvi/index.php');
}
require_once 'dbconnection.php';
if(isset($_POST['removeCart']))
{
$userId = $_SESSION['userId'];
$productId = $_POST['removeCart'];
unset($_POST);
$sql = "DELETE FROM `cart` WHERE user_id = {$userId} AND product_id = {$productId}";
$result = mysqli_query($con,$sql);
}
if(isset($_POST['orderNow']))
{
// die(print_r($_SESSION['orderNow']));
$sql = "SELECT * FROM cart WHERE user_id={$_SESSION['userId']}";
$result = mysqli_query($con,$sql);
if(mysqli_num_rows($result)>0)
{
while(($row = mysqli_fetch_assoc($result))!=null)
{
$id = 'qty'.$row['product_id'];
$sql = "UPDATE cart SET quantity = {$_POST[$id]} WHERE user_id = {$_SESSION['userId']} AND product_id = {$row['product_id']}";
$result1 = mysqli_query($con,$sql);
}
}
header('Location: /charvi/chooseAddress.php');
}
else
{
require_once 'navbar.php';
$userId = $_SESSION['userId'];
$sql = "SELECT * FROM cart WHERE user_id = '{$userId}'";
$result = mysqli_query($con,$sql);
if(mysqli_num_rows($result)>0)
{
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<div class="container-fluid p-0">
<h1 class="text-center bg-secondary py-4 text-light">Your Cart</h1>
<?php
while(($row=mysqli_fetch_assoc($result))!=null)
{
$sql = "SELECT * FROM product WHERE product_id={$row['product_id']}";
$result1 = mysqli_query($con,$sql);
if(mysqli_num_rows($result1)>0)
{
$row1 = mysqli_fetch_assoc($result1);
$name = $row1['PRODUCT_NAME'];
$productId = $row['product_id'];
$qty = $row1['QUANTITY'];
$price = $row1['PRICE'];
$img = $row1['IMAGE'];
$category = $row1['CATEGORY_ID'];
$company = $row1['COMPANY_ID'];
$sql1 = "SELECT category_name FROM category WHERE category_id = {$category}";
$result1 = mysqli_query($con,$sql1);
$row1 = mysqli_fetch_assoc($result1);
$category = $row1['category_name'];
$sql1 = "SELECT company_name FROM company WHERE company_id = {$company}";
$result1 = mysqli_query($con,$sql1);
$row1 = mysqli_fetch_assoc($result1);
$company = $row1['company_name'];
$orderQty = $row['quantity'];
?>
<div class="container">
<div class="d-flex bg-light rounded-3 p-4 my-2" id="#temp">
<!-- Image -->
<img
src="<?php echo $product_images.$img; ?>"
alt="John Doe"
class="me-3 rounded-circle"
style="width: 60px; height: 60px;"
/>
<!-- Body -->
<div class="w-100">
<div class="d-flex justify-content-between align-items-center">
<h5 class="fw-bold" name="productName" id="productId"><?php echo $name; ?></h5>
<button class="btn btn-lg btn-close p-0" type="submit" name="removeCart" value="<?php echo $productId; ?>"></button>
</div>
<h5>Product Quantity :<?php echo $qty; ?> gm, Company : <?php echo $company; ?>, Category : <?php echo $category; ?></h5>
<h5 class="d-inline">Quantity : </h5><input type="number" name="qty<?php echo $productId?>" id="cartqty" value="<?php echo $orderQty; ?>" class="form-control w-25 d-inline"/>
</div>
</div>
</div>
</div>
<?php
}
}
?>
<div class="container text-center w-50 my-4">
<div class="card bg-dark">
<h2 class="card-head text-light py-2">Subtotal</h2>
<div class="card-body bg-dark p-0">
<table class="table table-responsive table-dark">
<thead>
<tr>
<th scope="col">No.</th>
<th scope="col">Item Name</th>
<th scope="col">Quantity</th>
<th scope="col">Total Price</th>
</tr>
</thead>
<tbody>
<?php
$userId = $_SESSION['userId'];
$sql = "SELECT * FROM cart WHERE user_id = '{$userId}'";
$result = mysqli_query($con,$sql);
$totalSum = 0;
if(mysqli_num_rows($result)>0)
{
$i = 1;
while(($row=mysqli_fetch_assoc($result))!=null)
{
$sql = "SELECT * FROM product WHERE product_id={$row['product_id']}";
$result1 = mysqli_query($con,$sql);
if(mysqli_num_rows($result1)>0)
{
$row1 = mysqli_fetch_assoc($result1);
$name = $row1['PRODUCT_NAME'];
$price = $row1['PRICE'];
$orderQty = $row['quantity'];
$price = $orderQty*$price;
$totalSum += $price;
echo "<tr>
<th scope='row'>{$i}</th>
<td>{$name}</td>
<td>{$orderQty}</td>
<td>{$price}</td>
</tr>";
$i++;
}
}
}
?>
<th colspan="3" scope="row">Sub Total</th>
<td><?php echo $totalSum; ?></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="container text-center my-4">
<button class="btn btn-success" type="submit" name="orderNow">Order Now</button>
</div>
</form>
<?php
}
else
{
?>
<div class="container-fluid p-0">
<h1 class="text-center bg-secondary py-4 text-light">Your Cart is Empty</h1>
</div>
<?php
}
}
require_once 'userDashboard.php';
if(isset($_GET['error']))
{
$error = $_GET['error'];
require_once 'error.php';
}
if(isset($_GET['success']))
{
$error = $_GET['success'];
require_once 'success.php';
}
require_once 'userDashboard.php';
require_once 'footer.php';
?>
</body>
<?php require_once 'scripts.php' ?>
</html>