-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_orders.php
35 lines (33 loc) · 1.05 KB
/
new_orders.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
<!DOCTYPE html>
<?php
$admin = new admin();
$new_orders = $admin->view_only_newUserOrders();
?>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<table id='newOrders' class='tab-pane fade'>
<tr class="bg-dark text-light h4 text-center">
<th>order_id</th>
<th>book name</th>
<th>price</th>
<th>date</th>
<th>arrived</th>
</tr>
<?php
foreach ($new_orders as $new_order){
?>
<tr>
<th><?=$new_order['order_id']?></th>
<th><?=$new_order['bookName']?></th>
<th><?=$new_order['price']?></th>
<th><?=$new_order['order_date']?></th>
<th><?=$new_order['arrived']?></th>
</tr>
<?php }?>
</table>
</body>
</html>