-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcart_process.php
61 lines (51 loc) · 1.74 KB
/
cart_process.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
<?php session_start();
// if(isset($_GET['product_brand']) and isset($_GET['product_name']) and isset($_GET['product_price']) and isset($_GET['product_section']) and isset($_GET['product_image']))
// {
// //add item
// if ($_GET['product_price'] == "Product Price") {
// $_SESSION['cart'][] = array("product_brand"=>$_GET['product_brand'],"product_name"=>$_GET['product_name'],"product_price"=>(int)$_GET['product_price'],"quantity"=>(int)$_GET['quantity'], "product_image" => $_GET['product_image']);
// }
// header("location: viewcart.php");
// }
// else if(isset($_GET['id']))
// {
// //del a item
// $id = $_GET['id'];
// unset($_SESSION['cart'][$id]);
// header("location: viewcart.php");
// }
// else if(!empty($_POST))
// {
// //update quantity
// foreach($_POST as $id=>$val)
// {
// $_SESSION['cart'][$id]['quantity']=$val;
// header("location: viewcart.php");
// }
// }
if(isset($_GET['product_brand']) and isset($_GET['product_name']) and isset($_GET['product_price']) and isset($_GET['product_image']))
{
//add item
// if ($_GET['product_price'] == "Product Price") {
$_SESSION['cart'][] = array("product_brand"=>$_GET['product_brand'],"product_name"=>$_GET['product_name'],"product_price"=>(int)$_GET['product_price'],"quantity"=>(int)$_GET['quantity'], "product_image" => $_GET['product_image']);
print_r($_SESSION['cart']);
// }
header("location: viewcart.php");
}
else if(isset($_GET['id']))
{
//del a item
$id = $_GET['id'];
unset($_SESSION['cart'][$id]);
header("location: viewcart.php");
}
else if(!empty($_POST))
{
//update quantity
foreach($_POST as $id=>$val)
{
$_SESSION['cart'][$id]['quantity']=$val;
header("location: viewcart.php");
}
}
?>