-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyourorders.php
74 lines (68 loc) · 2.2 KB
/
yourorders.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
<html>
<body>
<style type="text/css">
tr:nth-child(even) {background-color: #f2f2f2;}
body {
background-image: url('b.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: top;
background-size: cover;
}
head{
color: #ffffff;
}
.white-box {
border-radius: 15px 50px;
background-color: #EBEBEB;
color: black;
width: relative;
height: relative;
padding: 50px;
position: relative;
}
</style>
<head><?php include("header.php"); ?></head>
<?php
session_start();
$mysqli = new mysqli("localhost", "root", "newhorizon", "ACCASE");
$query = "SELECT * FROM `orders`";
echo '</br>
</br>
</br>
</br>
<div class="white-box" align="center">
<SECTION align=""><A HREF="/../index1.php"><IMG SRC="/../log.png" alt="Home"></IMG></A></SECTION>
<b><font size="8" face="Courier New" color="black">Your Orders</font></b>
</br>
<font size="5" face="Courier New" color="black">Click on Order ID to view bill</font>
</br>
</br>
<table border="0" cellspacing="2" cellpadding="2" align="center" width="1200" height="200">
<tr>
<td> <b><font face="Trebuchet MS" size="5">Order ID</font></b> </td>
<td> <b><font face="Trebuchet MS" size="5">Order Date</font></b> </td>
<td> <b><font face="Trebuchet MS" size="5">Order Status</font></b> </td>
<td> <b><font face="Trebuchet MS" size="5">Estimated Time</font></b> </td>
</tr>
</div>';
if ($result = $mysqli->query($query)) {
while ($row = $result->fetch_assoc()) {
if($row['roll']===$_SESSION['roll']){
$field1name = $row["order_id"];
$field2name = $row["order_date"];
$field3name = $row["order_status"];
$field4name = $row["est_time"];
echo '<tr>
<td><a href="bill.php?id='.$field1name.'"><font face="Verdana">'.$field1name.'</font></a></td>
<td><font face="Verdana">'.$field2name.'</font></td>
<td><font face="Verdana">'.$field3name.'</font></td>
<td><font face="Verdana">'.$field4name.'</font></td>
</tr>';
}
}
$result->free();
}
?>
</body>
</html>