📄 user_search.tpl.php
字号:
<table width="100%" border="0" align="center" cellpadding="<?=TABLESPACE?>" cellspacing="<?=TABLECELL?>" class="tableborder">
<form action="user.php" method="post" name="wane_post" onsubmit="return checkformdata()">
<tr align="center" class="categround">
<td colspan="2"><?=$LANG_MSEARCH[TITLE]?></td>
</tr>
<tr class="contentground">
<td align="left"><?=$LANG_MSEARCH[UID]?>
</td>
<td align="left"><input name="uid" type="text" id="uid" size="8" maxlength="8"></td>
</tr>
<tr class="contentground">
<td align="left"><?=$LANG_MSEARCH[GROUP]?>
</td>
<td align="left"><select name="kind" id="kind">
<option value="all">All</option>
<?
$query=$db->query("SELECT * FROM {$tablepre}usergroup WHERE kind!='-2' ORDER BY gid");
while ($row=$db->row($query))
{
echo "<option value=\"".$row[kind]."\">".$row[title]."</option>";
}
?>
</select></td>
</tr>
<tr class="contentground">
<td align="left"><?=$LANG_MSEARCH[USERNAME]?>
</td>
<td align="left"><input name="username" type="text" id="username"></td>
</tr>
<tr class="contentground">
<td align="left"><?=$LANG_MSEARCH[REGTIME]?>(YYYY-MM-DD)</td>
<td align="left"><input name="regtime" type="text" value="2005-3-1"> <input name="regto" type="radio" value="s" checked>
<?=$LANG_MSEARCH[BEFORE]?><input name="regto" type="radio" value="l">
<?=$LANG_MSEARCH[AFTER]?></td>
</tr>
<tr class="contentground">
<td align="left">
<?=$LANG_MSEARCH[LASTLOGIN]?>
</td>
<td align="left"><input name="lastlogin" type="text" size="4" maxlength="4">
<input name="loginto" type="radio" value="s" checked>
<?=$LANG_MSEARCH[BEFORE]?>
<input name="loginto" type="radio" value="l">
<?=$LANG_MSEARCH[AFTER]?>
</td>
</tr>
<tr class="contentground">
<td align="left">
<?=$LANG_MSEARCH[INFOSIGN]?>
</td>
<td align="left"><select name="sign" id="sign">
<option value="all">All</option>
<option value="1"><?=$LANG_MSEARCH[YES]?></option>
<option value="0"><?=$LANG_MSEARCH[NO]?></option>
</select></td>
</tr>
<tr class="contentground">
<td colspan="2" align="center"><input type="submit" name="Submit" value=" <?=$LANG_MEMBER[SUBMIT]?> ">
<input name="msearchsubmit" type="hidden" id="msearchsubmit" value="1"> </td>
</tr>
</form>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -