-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview_users.php
More file actions
33 lines (30 loc) · 942 Bytes
/
view_users.php
File metadata and controls
33 lines (30 loc) · 942 Bytes
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
<?php include_once 'inc/top.php'; ?>
<table border="0"><tr valign="top"><td width="310"> <!-- start of frame -->
<?php include_once 'inc/aside.php'; ?>
</td><td>
<main class="tmp-base">
<?php $list_nav_key = 'Manage Distributors'; include_once 'inc/nav.php'; ?>
<table class="tmp-table" border="0">
<tr>
<th> </th>
<th width="1">#</th>
<th>Title</th>
<th>Full Name</th>
<th>Sex</th>
<th>Email Address</th>
<th>Phone Number</th>
<th>Location</th>
<th>RETINKEN Zone</th>
<th>Reg. Date</th>
<th> </th>
</tr>
<tbody>
<?php echo $rows; ?>
</tbody>
</table>
<p></p>
<?php echo $pager->nav; ?>
</main>
</td></tr></table> <!-- end of frame -->
<?php include_once 'inc/footer.php'; ?>
<?php include_once 'inc/end.php'; ?>