This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/include/query_users.php

56 lines
1.4 KiB
PHP
Raw Normal View History

<?php
/*************/
/* User List */
/*************/
2004-03-15 16:22:00 +00:00
echo html_frame_start("List Users","400","",0)
?>
<!-- start of users query -->
<form ACTION="<?php echo BASE ?>stdquery.php" METHOD="get">
2004-03-15 16:22:00 +00:00
<table width="100%" border=0 cellpadding=0 cellspacing=0>
2004-03-15 16:22:00 +00:00
<tr>
<td class=color1>Pattern</td>
<td><input TYPE="TEXT" NAME="searchfor"><br /><small>(leave blank to match all)</small></td>
</tr>
2004-03-15 16:22:00 +00:00
<tr>
<td class=color1>Entries Per Page</td>
<td>
<select NAME="linesPerPage">
<option>100</option>
<option>200</option>
<option>500</option>
<option>ALL</option>
</select>
</td>
</tr>
2004-03-15 16:22:00 +00:00
<tr>
<td colspan=2 class=color3 align=center><input TYPE="SUBMIT" VALUE="List Users" class=button></td>
</tr>
2004-03-15 16:22:00 +00:00
</table>
2004-03-15 16:22:00 +00:00
<input TYPE="HIDDEN" NAME="orderby" VALUE="userid">
<input TYPE="HIDDEN" NAME="searchwhat" VALUE="user_list.username">
<input TYPE="HIDDEN" NAME="fields[]" VALUE="user_list.userid">
<input TYPE="HIDDEN" NAME="fields[]" VALUE="user_list.username">
<input TYPE="HIDDEN" NAME="fields[]" VALUE="user_list.email">
<input TYPE="HIDDEN" NAME="fields[]" VALUE="user_list.realname">
<input TYPE="HIDDEN" NAME="fields[]" VALUE="user_list.created">
</form>
2004-03-15 16:22:00 +00:00
<!-- end of users query -->
<?php
2004-03-15 16:22:00 +00:00
echo html_frame_end();
echo p(),p(),p();
?>