-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-to-cart.php
43 lines (34 loc) · 1.05 KB
/
add-to-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
<?php
// mulai sesi
session_start();
// cek apakah cust sudah login
if (!isset($_SESSION['customer_id'])) {
header("Location: ./login.php");
exit();
}
// cek apakah mengklik tambah ke keranjang
if (!isset($_POST['plant_id'])) {
header("Location: ./products.php");
exit();
}
// import func untuk CRUD informasi dari cart
require_once('data/cart-item.php');
// set cust id dan plant id
$customer_id = $_SESSION['customer_id'];
$plant_id = $_POST['plant_id'];
// cek apakah tumbuhan tersebut sudah pernah ada di keranjang
$cart_item = find_cart_item($customer_id, $plant_id);
// jika tumbuhan tersebut belum pernah ditambahkan maka masukkan ke keranjang. jika sudah pernah ditambahkan ke keranjang maka update nilainya + x
if (!$cart_item) {
save_cart_item($customer_id, $plant_id);
} else {
update_cart_item($customer_id, $plant_id, $cart_item['cart_item_qty'] + 1);
}
// jika klik beli
if (isset($_POST['buy_now'])) {
header('Location: ./cart.php');
exit();
}
$previous_page = $_SERVER['HTTP_REFERER'];
header("Location: $previous_page");
exit();