-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.php
66 lines (66 loc) · 2.49 KB
/
report.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
<?php include 'header.php' ?>
<script type="text/javascript">
$(document).ready(function() {
$('select').material_select();
});
</script>
<div class="container">
<div class="row">
<form class="" action="#" method="POST">
<h4>รายการสั่งสินค้า</h4>
<div class="input-field col s10">
<select class="" name="stat">
<option value="Yes">ชำระเงินแล้ว</option>
<option value="No">ยังไม่ได้ชำระเงิน</option>
</select>
<label>เลือกข้อมูลการแสดงผล</label>
</div>
<div class="col s2 right-align">
<br>
<button class="btn waves-effect waves-light #01579b light-blue darken-4 z-depth-4" type="submit" name="action">แสดงข้อมูล
<i class="material-icons right">send</i>
</button>
</div>
</form>
</div>
<?php if ($_POST): ?>
<div class="row">
<div class="col s12">
<table>
<thead>
<tr>
<th>รหัสการสั่งซื้อ</th>
<th>Name</th>
<th>Product</th>
<th>Price</th>
<th>Address</th>
<th>Date</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<?php
$stat = $_POST['stat'];
$sql = "SELECT * FROM report JOIN product ON product.Product_ID = report.Product_ID JOIN member ON report.Member_User = member.Member_User WHERE Status = '$stat'";
$result = $connect->query($sql);
while ($row = $result->fetch_array()) {
?>
<tr>
<td>#<?php echo $row['Report_ID']; ?></td>
<td><?php echo $row['Member_Firstname']." ".$row['Member_Lastname']; ?></td>
<td><?php echo $row['Product_Name']; ?></td>
<td><?php echo $row['Report_Price']; ?></td>
<td><?php echo $row['Address']; ?></td>
<td><?php echo $row['Date']; ?></td>
<td><a href="paid.php?ID=<?php echo $row['Report_ID']; ?>"><?php echo $row['Status']; ?></a></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
<?php endif; ?>
</div>
</div>
<?php include 'footer.php' ?>