-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.php
190 lines (154 loc) · 6.29 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
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
<?php
include 'config.php';
session_start();
$user_id = $_SESSION['user_id'];
if(!isset($user_id)){
header('location:login.php');
}
if(isset($_POST['order_btn'])){
$name = mysqli_real_escape_string($conn, $_POST['name']);
$number = $_POST['number'];
$email = mysqli_real_escape_string($conn, $_POST['email']);
$method = mysqli_real_escape_string($conn, $_POST['method']);
$address = mysqli_real_escape_string($conn, 'flat no. '. $_POST['flat'].', '. $_POST['street'].', '. $_POST['city'].', '. $_POST['country'].' - '. $_POST['pin_code']);
$placed_on = date('d-M-Y');
$cart_total = 0;
$cart_products[] = '';
$cart_query = mysqli_query($conn, "SELECT * FROM `cart` WHERE user_id = '$user_id'") or die('query failed');
if(mysqli_num_rows($cart_query) > 0){
while($cart_item = mysqli_fetch_assoc($cart_query)){
$cart_products[] = $cart_item['name'].' ('.$cart_item['quantity'].') ';
$sub_total = ($cart_item['price'] * $cart_item['quantity']);
$cart_total += $sub_total;
}
}
$total_products = implode(', ',$cart_products);
$order_query = mysqli_query($conn, "SELECT * FROM `orders` WHERE name = '$name' AND number = '$number' AND email = '$email' AND method = '$method' AND address = '$address' AND total_products = '$total_products' AND total_price = '$cart_total'") or die('query failed');
if($cart_total == 0){
$message[] = 'your cart is empty';
}else{
if(mysqli_num_rows($order_query) > 0){
$message[] = 'order already placed!';
}else{
mysqli_query($conn, "INSERT INTO `orders`(user_id, name, number, email, method, address, total_products, total_price, placed_on) VALUES('$user_id', '$name', '$number', '$email', '$method', '$address', '$total_products', '$cart_total', '$placed_on')") or die('query failed');
header('location:main.php');
$message[] = 'order placed successfully!';
mysqli_query($conn, "DELETE FROM `cart` WHERE user_id = '$user_id'") or die('query failed');
}
}
}
?>
<!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.0.0/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style1.css">
<script>
var message = document.getElementById('contact-error');
$('#contact').focusout(function(){
if(!$(this).val().match('[0-9]{10}')) {
$('#contact-error').addClass('contact-message');
message.innerHTML = "required 10 digits, match requested format!";
}else {
$('#contact-error').removeClass('contact-message');
message.innerHTML = "";
}
})
var message1 = document.getElementById('contact2-error');
$('#contact2').focusout(function(){
if(!$(this).val().match('[0-5]{6}')) {
$('#contact2-error').addClass('contact2-message');
message.innerHTML = "required 10 digits, match requested format!";
}else {
$('#contact-error').removeClass('contact2-message');
message.innerHTML = "";
}
})
</script>
</head>
<body>
<?php include 'header.php'; ?>
<div class="heading">
<h3>checkout</h3>
<!-- <p> <a href="home.php">home</a> / checkout </p> -->
</div>
<section class="display-order" action="" method="post">
<?php
$grand_total = 0;
$select_cart = mysqli_query($conn, "SELECT * FROM `cart` WHERE user_id = '$user_id'") or die('query failed');
if(mysqli_num_rows($select_cart) > 0){
while($fetch_cart = mysqli_fetch_assoc($select_cart)){
$total_price = ($fetch_cart['price'] * $fetch_cart['quantity']);
$grand_total += $total_price;
?>
<p> <?php echo $fetch_cart['name']; ?> <span>(<?php echo 'RS.'.$fetch_cart['price'].'/-'.' x '. $fetch_cart['quantity']; ?>)</span> </p>
<?php
}
}else{
echo '<p class="empty">your cart is empty</p>';
}
?>
<div class="grand-total"> Grand total : <span>RS.<?php echo $grand_total; ?>/-</span> </div>
</section>
<section class="checkout">
<form action="" method="post">
<h3>place your order</h3>
<div class="flex">
<div class="inputBox">
<span>Your Name :</span>
<input type="text" name="name" required placeholder="Enter Your Name">
</div>
<div class="inputBox">
<span>Your Number :</span>
<input type="text" name="number" id="contact" maxlength="10" required placeholder="Enter Your Number">
</div>
<div class="inputBox">
<span>Your E-mail :</span>
<input type="email" name="email" required placeholder="Enter Your E=mail">
</div>
<div class="inputBox">
<span>Payment Method :</span>
<select name="method">
<option value="razorpay">RazorPay</option>
<option value="paytm">Paytm</option>
</select>
</div>
<div class="inputBox">
<span>Address line 01 :</span>
<input type="number" min="0" name="flat" required placeholder="e.g. flat no.">
</div>
<div class="inputBox">
<span>Address line 02 :</span>
<input type="text" name="street" required placeholder="e.g. street name">
</div>
<div class="inputBox">
<span>City :</span>
<input type="text" name="city" required placeholder="e.g. mumbai">
</div>
<div class="inputBox">
<span>State :</span>
<input type="text" name="state" required placeholder="e.g. maharashtra">
</div>
<div class="inputBox">
<span>Country :</span>
<input type="text" name="country" required placeholder="e.g. india">
</div>
<div class="inputBox">
<span>Pin Code :</span>
<input type="text" id="contact2" name="pin_code" required placeholder="e.g. 123456">
</div>
</div>
<center> <input type="submit" value="order now" class="btn" name="order_btn"> </center>
</form>
</section>
<?php include 'footer.php'; ?>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>