-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.php
More file actions
199 lines (167 loc) · 7.75 KB
/
checkout.php
File metadata and controls
199 lines (167 loc) · 7.75 KB
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
194
195
196
197
198
199
<?php
include 'components/connect.php';
session_start();
// Initialize the $message array
$message = [];
if (isset($_SESSION['user_id'])) {
$user_id = $_SESSION['user_id'];
} else {
$user_id = '';
header('location:user_login.php');
}
;
if (isset($_POST['order'])) {
// Retrieve form data
$name = $_POST['name'];
$number = $_POST['number'];
$email = $_POST['email'];
$method = $_POST['method'];
$address = $_POST['flat'] . ', ' . $_POST['street'] . ', ' . $_POST['city'] . ', ' . $_POST['state'] . ', ' . $_POST['country'] . ' - ' . $_POST['pin_code'];
$total_products = $_POST['total_products'];
$total_price = $_POST['total_price'];
// Validate form data
if (empty($name)) {
$e[] = 'Please Enter Your Name.';
}
if (empty($number)) {
$message[] = 'Please Enter your contact number.';
} elseif (strlen($number) < 10 || !preg_match('/^[0-9]{10}$/', $number)) {
$message[] = 'Please Enter a valid contact number with 10 digits.';
}
if (empty($email)) {
$message[] = 'Please Enter your email.';
} elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$message[] = 'Please Enter a valid email address.';
}
if (empty($method)) {
$message[] = 'Please select a payment method.';
}
if (empty($address)) {
$message[] = 'Please Enter your address.';
} elseif (strlen($address) < 10) {
$message[] = 'Please Enter a valid address with at least 10 characters.';
}
if (empty($message)) {
// All fields are valid, proceed with placing the order
$check_cart = $conn->prepare("SELECT * FROM `cart` WHERE user_id = ?");
$check_cart->execute([$user_id]);
if ($check_cart->rowCount() > 0) {
$insert_order = $conn->prepare("INSERT INTO `orders`(user_id, name, number, email, method, address, total_products, total_price) VALUES(?,?,?,?,?,?,?,?)");
$insert_order->execute([$user_id, $name, $number, $email, $method, $address, $total_products, $total_price]);
$delete_cart = $conn->prepare("DELETE FROM `cart` WHERE user_id = ?");
$delete_cart->execute([$user_id]);
$message[] = 'Order placed successfully!';
} else {
$message[] = 'Your cart is empty.';
}
}
}
?>
<!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>Checkout</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<?php include 'components/user_header.php'; ?>
<!-- ... -->
<section class="checkout-orders">
<form action="" method="POST">
<h3>your Items</h3>
<div class="display-orders">
<?php
$grand_total = 0;
$cart_items[] = '';
$select_cart = $conn->prepare("SELECT * FROM `cart` WHERE user_id = ?");
$select_cart->execute([$user_id]);
if ($select_cart->rowCount() > 0) {
while ($fetch_cart = $select_cart->fetch(PDO::FETCH_ASSOC)) {
$cart_items[] = $fetch_cart['name'] . ' (' . $fetch_cart['price'] . ' x ' . $fetch_cart['quantity'] . ') - ';
$total_products = implode($cart_items);
$grand_total += ($fetch_cart['price'] * $fetch_cart['quantity']);
?>
<p> <?= $fetch_cart['name']; ?>
<span>(<?= '$' . $fetch_cart['price'] . '/- x ' . $fetch_cart['quantity']; ?>)</span>
</p>
<?php
}
} else {
echo '<p class="empty">your cart is empty!</p>';
}
?>
<input type="hidden" name="total_products" value="<?= $total_products; ?>">
<input type="hidden" name="total_price" value="<?= $grand_total; ?>" value="">
<div class="grand-total">Grand total : <span>$<?= $grand_total; ?>/-</span></div>
</div>
<h3>Place your orders</h3>
<div class="flex">
<div class="inputBox">
<span>Your Name :</span>
<input type="text" name="name" placeholder="Enter your name" class="box" maxlength="20"
required>
</div>
<div class="inputBox">
<span>Your Contact Number :</span>
<input type="tel" name="number" placeholder="Enter your number" class="box" pattern="[0-9]{10}"
required>
</div>
<div class="inputBox">
<span>Your Email ID :</span>
<input type="email" name="email" placeholder="Enter your email" class="box" maxlength="50"
required>
</div>
<div class="inputBox">
<span>Payment Method :</span>
<select name="method" class="box" required>
<option value="">Select a method</option>
<option value="cash on delivery">Cash On Delivery</option>
<option value="credit card">Credit Card</option>
<option value="paytm">UPI</option>
<option value="paypal">Paypal</option>
</select>
</div>
<div class="inputBox">
<span>Address line 01 :</span>
<input type="text" name="flat" placeholder="e.g. Flat number" class="box" minlength="10"
required>
</div>
<div class="inputBox">
<span>Address line 02 :</span>
<input type="text" name="street" placeholder="e.g. Street name" class="box" minlength="10"
required>
</div>
<div class="inputBox">
<span>City :</span>
<input type="text" name="city" placeholder="e.g. Bangalore" class="box" maxlength="50" required>
</div>
<div class="inputBox">
<span>State :</span>
<input type="text" name="state" placeholder="e.g. Karnataka" class="box" maxlength="50"
required>
</div>
<div class="inputBox">
<span>Country :</span>
<input type="text" name="country" placeholder="e.g. India" class="box" maxlength="50" required>
</div>
<div class="inputBox">
<span>Pin Code :</span>
<input type="text" name="pin_code" placeholder="e.g. 123456" class="box" pattern="[0-9]{6}"
required>
</div>
</div>
<input type="submit" name="order" class="btn <?= ($grand_total > 1) ? '' : 'disabled'; ?>"
value="Place Order">
</form>
</section>
<!-- ... -->
<?php include 'components/footer.php'; ?>
<!-- ... -->
</body>
</html>