-
Notifications
You must be signed in to change notification settings - Fork 0
/
orderItems.php
277 lines (206 loc) · 7.56 KB
/
orderItems.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<?php error_reporting(0); ?>
<?php
session_start();
$connect = mysqli_connect("localhost", "root", "", "sampath_store");
include "DBconnection.php";
if(!isset($_SESSION['name']))
{
header("location:product.php");
}
else
{
$name=$_SESSION['name'];
$id = $_SESSION["id"];
$result = mysqli_query($conn,"SELECT * FROM tbl_customer WHERE CustomerID='" . $id."'");
$row = mysqli_fetch_array($result);
if($row >0)
{
$CustomerName =$row['CustomerName'];
$Address =$row['Address'];
$City =$row['City'];
$PostalCode =$row['PostalCode'];
$Country =$row['Country'];
$password =$row['password'];
$id = $_SESSION['id'];
}
if($row >0)
{
$mysqli = new mysqli('localhost','root','','sampath_store') or die(mysqli_error($mysqli));
$result = $mysqli->query("SELECT * FROM tbl_order WHERE customer_id ='" . $id."'")or die ($mysqli->erorr);
$id = $_SESSION['id'];
}
if($row >0)
{
$mysqli = new mysqli('localhost','root','','sampath_store') or die(mysqli_error($mysqli));
$result2 = $mysqli->query("SELECT * FROM tbl_order,tbl_order_details WHERE tbl_order.customer_id ='" . $id."' AND tbl_order.order_id = tbl_order_details.order_id ")or die ($mysqli->erorr);
$id = $_SESSION['id'];
}
}
?>
<!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> Welcome <?php echo $name;?></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body style="margin-top: -20px">
<div class="header">
<div class="container">
<div class="navbar">
<div class="logo">
<img src="images/logonewsampath1.png" width="125px" alt="">
</div>
<nav>
<ul style="font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif';font-size: 18px">
<li> <a class="active" href="customerindex.php">Home</a></li>
<li> <a class="active" href="products.php">All Products</a></li>
<li> <a class="active" href="customerprofile.php">My Profile</a></li>
<li> <a class="active" href="myorders.php">Orders</a></li>
<li> <a class="active" href="orderItems.php">Order Details</a></li>
<li><a data-toggle="tab" href="#cart"> <i class="fa fa-shopping-cart"></i> <span class="badge"><?php if(isset($_SESSION["shopping_cart"])) { echo count($_SESSION["shopping_cart"]); } else { echo '0';}?></span></a></li>
<li><a class="btn btn-default" href="customerprofile.php"> <i class="fa fa-user-circle"></i> <?php echo $name;?></a> </li>
<li><a class="btn btn-info" href="userLogout.php">Log Out <i class="fa fa-sign-out"></i></a> </li>
</ul>
</nav>
</div>
<div >
<div class="container">
<div style="text-align:center">
<h2>Ordered Items</h2>
<p> </p>
</div>
<table class="table table-striped table-hover" align="left" style="margin-top: ">
<thead>
<tr>
<th scope="row">ID</th>
<th scope="row">Order ID</th>
<th scope="row">Product Name</th>
<th scope="row">Price</th>
<th scope="row">Quantity</th>
<th scope="row">Total</th>
</tr>
</thead>
<tbody align="center" style="font-size: 14px">
<?php
while ($row= $result2->fetch_assoc()): ?>
<tr>
<td align="left"><?php echo $row['id']; ?> </td>
<td align="left"><?php echo $row['order_id']; ?> </td>
<td align="left"><?php echo $row['product_name']; ?></td>
<td align="left"><?php echo $row['product_price']; ?></td>
<td align="left"><?php echo $row['product_quantity']; ?></td>
<td align="left">RS.<?php echo $row['product_quantity']*$row['product_price']; ?>/= </td>
</tr>
</tbody>
<?php endwhile; ?>
</table>
<?php
function pre_r( $array ){
echo '<pre>';
print_r($array);
echo '</pre>';
}
?>
</div>
</div>
</div>
</div>
<!-----featured categories------>
<div class="catergories">
<div class="small-container">
<div class="row">
<div class="col-3">
<a href="PProductCB4.php"><img src="images/va01.png" alt="" ><figcaption style="text-align: center;font-size: 50px;">Vegetables</figcaption></a>
</div>
<div class="col-3">
<a href="ProductCB.php"><img src="images/c02.png" alt=""><figcaption style="text-align: center;font-size: 50px;">Baverages</figcaption></a>
</div>
<div class="col-3">
<a href="ProductCB3.php"><img src="images/f01.png" alt=""><figcaption style="text-align: center;font-size: 50px;">Fruits</figcaption></a>
</div>
</div>
</div>
</div>
<!-------offer-->
<div class="offer">
<div class="small-container">
<div class="row">
<div class="col-2">
<img src="images/Ban-TxHlZ0NqAe08-CO-DISCOUNT-STORE-WEB-BANNER-new (002).png" class="offer-img">
</div>
<div class="col-2">
<h1>Best Prices & Offers</h1>
<p>
Enjoy the same lowest prices as your local Online Express supermarket, Express & Food Hall store</p>
<a href="ProductCB4.php" class="btn">buy now →</a>
</div>
</div>
</div>
</div>
<!----testimonial-->
<!-----brands------>
<div class="brands">
<div class="small-container">
<div class="row">
<div class="col-5">
<img src="images/logo-godrej.png" alt="">
</div>
<div class="col-5">
<img src="images/logo-coca-cola.png" alt="">
</div>
<div class="col-5">
<img src="images/logo-paypal.png" alt="">
</div>
<div class="col-5">
<img src="images/logo-philips.png" alt="">
</div>
</div>
</div>
</div>
<!----footer---->
<div class="footer">
<div class="container">
<div class="row">
<div class="footer-col-1">
<h3>Download our app </h3>
<p>Download app for android and ios mobile phones</p>
<div class="app-logo">
<img src="images/play-store.png" alt="">
<img src="images/app-store.png" alt="">
</div>
</div>
<div class="footer-col-2">
<img src="images/logo-white.png" alt="">
<p>Download app for android and ios mobile phones</p>
</div>
<div class="footer-col-3">
<h3>usful links</h3>
<ul>
<li>coupons</li>
<li>blog post</li>
<li>return policy</li>
<li>join affilitate</li>
</ul>
</div>
<div class="footer-col-4">
<h3>follow us</h3>
<ul>
<li>facebook</li>
<li>twiter</li>
<li>instagram</li>
<li>youtube</li>
</ul>
</div>
</div>
<hr>
<p class="copyright">copyright 2020 - </p>
</div>
</div>
</body>
</html>>>>