-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist-staff.php
More file actions
36 lines (34 loc) · 1.22 KB
/
Copy pathlist-staff.php
File metadata and controls
36 lines (34 loc) · 1.22 KB
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
<?php include 'header.php'; ?>
<section>
<h2>Admin</h2>
<h3>Staff List</h3>
<p>
This is the contents of the voter table.
</p>
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
<th>Username</th>
<th> </th>
</tr>
<?php foreach ($staffs as $staff) : ?>
<tr>
<td><?php echo $staff['first_name'] . ' ' . $staff['last_name']; ?></td>
<td><?php echo $staff['email']; ?></td>
<td><?php echo $staff['phone']; ?></td>
<td><?php echo $staff['login']; ?></td>
<td>
<form action="." method="post">
<input type="hidden" name="action" value="edit-staff-form"/>
<input type="hidden" name="staff_id"
value="<?php echo $staff['staff_id']; ?>"/>
<input type="submit" value="Edit" />
</form>
</td>
</tr>
<?php endforeach; ?>
</table>
</section>
<?php include 'footer.php'; ?>