-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManage_Courier.php
88 lines (60 loc) · 2.07 KB
/
Manage_Courier.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
<!DOCTYPE html>
<html>
<head>
<title>Manage Courier</title>
<link rel="stylesheet" href="./css/TableStyle.css" />
<style>
</style>
</head>
<body>
<?php
include 'CheckifLogin.php';
include('connection.php');
include('navBar.php');
$sql = "select * from courier";
$result = $connect->query($sql);
?>
<div class="dashboard_table" style="overflow-x:auto">
<h1 style="color:black">Courier Detail</h1>
<table>
<tr>
<th >Id</th>
<th >name</th>
<th >status</th>
<th >Password</th>
<th >contact</th>
<th>Address</th>
<th>Deletion</th>
<th>Updation</th>
</tr>
<?php
while ($row = $result->fetch_assoc()) {
# code...
echo "
<tr>
<td>$row[c_id]</td>
<td>$row[name]</td>
<td>$row[status]</td>
<td>$row[PASSWORD]</td>
<td>$row[contact]</td>
<td>$row[address]</td>
<td>
<a href='delete_courier.php?c_id=$row[c_id]'>Delete</a>
</td>
<td>
<a href='update_courier.php?c_id=$row[c_id]&name=$row[name]&status=$row[status]&PASSWORD=$row[PASSWORD]&contact=$row[contact]&address=$row[address]'>update<a>
</td>
</tr>
";
}
?>
</table>
</div>
<?php
$connect->close();
?>
</body>
</html>
<?php
include('footer.php');
?>