-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprocess_cart.php
68 lines (68 loc) · 2.75 KB
/
process_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
<?php
session_start();
ob_start();
$rootPath = '/ananas';
require_once './database/DB.php';
if (isset($_GET['action'])) {
$action = $_GET['action'];
settype($_GET['id'], 'int');
settype($_GET['quantity'], 'int');
$size = $_GET['size'];
$id = $_GET['id'];
$quantity = $_GET['quantity'];
$productKey = $id . "_" . $size;
switch ($action) {
case 'add':
if ($id==0 || $quantity==0)
header('location: product.php');
if (isset($_SESSION['cart'][$productKey])) {
// nếu sản phẩm đã có trong giỏ thì tăng số lượng sản phẩm
$_SESSION['cart'][$productKey]['quantity'] += $quantity;
$conn->close();
header('location: product.php');
} else {
//nếu sản phẩm chưa có trong giỏ thì set số lượng là 1
$sql = "SELECT name, images, price, price_sale FROM product WHERE product_id='$id'";
$product = $conn->query($sql);
if ($product->num_rows > 0) {
$row = $product->fetch_array();
$price = $row['price_sale'] != 0 ? $row['price_sale'] : $row['price'];
$_SESSION['cart'][$productKey] = array(
"id" => $id,
"quantity" => $quantity,
"size" => $size,
"price" => $price,
"name" => $row['name'],
"img" => $row['images'],
);
$conn->close();
header('location: product.php');
}
else {
echo '<div class="alert alert-danger mt-2 mb-2">'.'Sản phẩm này không tồn tại'.'</div>';
echo "<a href='$rootPath/product.php'>".'Trở về trang chủ'.'</a>';
}
}
break;
case 'delete':
if (isset($_SESSION['cart'][$productKey])==0) {
// unset($_SESSION['cart']);
$conn->close();
header('location: cart.php');
}
else {
unset($_SESSION['cart'][$productKey]);
$conn->close();
header('location: cart.php');
}
break;
default:
$conn->close();
header('location: product.php');
break;
}
} else {
$conn->close();
header('location: product.php');
}
?>