<p class=normal>
<a href="<?=$ME?>?mode=add">[+U] Add User</a>
</p>
<table border=1 cellpadding=3>
<tr>
<th>Action</th>
<th>Username</th>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
<th>Privilege</th>
</tr>
<? while ($r = db_fetch_object($qid)) { ?>
<tr>
<td class=normal>
[ <a title="Delete <? pv($r->username) ?>" href="<?=$ME?>?mode=del&username=<? pv($r->username) ?>">X</a> ]
| <a title="Reset <? pv($r->username) ?>'s password" href="<?=$ME?>?mode=resetpw&username=<? pv($r->username) ?>">R</a>
]
</td>
<td class=normal><a title="Edit this user" href="<?=$ME?>?mode=edit&username=<? pv($r->username) ?>"><? pv($r->username) ?></a></td>
<td class=normal><? pv($r->firstname) ?></td>
<td class=normal><? pv($r->lastname) ?></td>
<td class=normal><a title="Email this user" href="mailto:<? pv($r->email) ?>"><? pv($r->email) ?></a></td>
<td class=normal><? pv($r->priv) ?></td>
</tr>
<? } ?>
</table>