-
Notifications
You must be signed in to change notification settings - Fork 1
/
checkout.php
116 lines (94 loc) · 3.62 KB
/
checkout.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
<?php
session_start();
include("connection.php");
error_reporting(0);
if(!isset($_SESSION['customer']))
{
header("location:login.php");
}
$cust= $_SESSION['customer'];
?>
<!DOCTYPE html>
<html>
<head>
<title>Customer Cart</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Dancing+Script" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.9/dist/css/bootstrap-select.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.9/dist/js/bootstrap-select.min.js"></script>
<!-- (Optional) Latest compiled and minified JavaScript translation files -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.9/dist/js/i18n/defaults-*.min.js"></script>
</head>
<body class="container">
<h1 class="text-center text-black mb-5"
style="font-family: 'Abril Fatface'; margin-top: 20px;">
<span class="fa fa-shopping-cart my-cart-icon"></span>
Your Cart</h1>
<form action="pay.php" method="post">
<div class="row">
<?php
if(isset($_GET['array']) && isset($_GET['total']))
{
$some= json_decode($_GET['array']);
$_SESSION['kela']= $_GET['array'];
/*echo gettype($some);*/
$tot= $_GET['total'];
}
else{
header("location:index.php");
}
$items = array();
foreach($some as $arr) {
foreach($arr as $key => $value) {
$items[$key] = $value;
}
?>
<input type="hidden" name="cust_name" value="<?php echo $cust; ?>">
<input type="hidden" name="total_price" value="<?php echo $tot; ?>">
<div class="col-lg-3 col-md-3 col-sm-12">
<div class="card">
<h6 class="card-title bg-info text-white p-2 text-uppercase"> <?php echo
$items['name'];?></h6>
<div class="card-body">
<img src="<?php echo
$items['image']; ?>" alt="phone" class="img-fluid mb-2" >
<h6 class="card-title bg-danger text-white p-2"> Rs <?php echo $items['price']; ?></h6>
<h6 class="card-title bg-info text-white p-2"> Quantity <?php echo $items['quantity'];?></h6>
</div>
</div>
</div>
<?php
}
?>
</div>
<div class="text-center text-danger mb-3" style="padding-top: 20px;">
<h4>
<img src="./images/delivery-truck.png" alt="" style="height:50px; width: 50px;">
Choose Delivery Method</h4>
<select class="selectpicker" name="delivery">
<option value="1">Normal (+ 50 Rs)</option>
<option value="2">Express (+ 150 Rs)</option>
</select>
</div>
<div class="text-center text-success mb-3" style="padding-top: 20px;">
<h4>
<img src="./images/pay.png" alt="" style="height:50px; width: 50px;">
Choose Payment Method</h4>
<select class="selectpicker" name="pay_type">
<option value="1">Online Payment</option>
<option value="2">CoD (Cash on Delivery)</option>
</select>
</div>
<div class="text-center text-danger mb-5">
<button name="payment" class="btn btn-info" >Confirm & Pay Rs <?php echo $tot;?> + Shipping </button>
</div>
</form>
</body>
</html>