📄 inc_user_log_filter_table.php
字号:
<tr bgcolor="<?php print $colors["panel"];?>"> <form name="form_userlog"> <td> <table cellpadding="0" cellspacing="0"> <tr> <td nowrap style='white-space: nowrap;' width="50"> Username: </td> <td width="1"> <select name="username" onChange="applyViewLogFilterChange(document.form_userlog)"> <option value="-1"<?php if ($_REQUEST["username"] == "-1") {?> selected<?php }?>>All</option> <option value="-2"<?php if ($_REQUEST["username"] == "-2") {?> selected<?php }?>>Deleted/Invalid</option> <?php $users = db_fetch_assoc("SELECT DISTINCT username FROM user_auth ORDER BY username"); if (sizeof($users) > 0) { foreach ($users as $user) { print "<option value='" . $user["username"] . "'"; if ($_REQUEST["username"] == $user["username"]) { print " selected"; } print ">" . $user["username"] . "</option>\n"; } } ?> </select> </td> <td nowrap style='white-space: nowrap;' width="50"> Result: </td> <td width="1"> <select name="result" onChange="applyViewLogFilterChange(document.form_userlog)"> <option value="-1"<?php if ($_REQUEST['result'] == '-1') {?> selected<?php }?>>Any</option> <option value="1"<?php if ($_REQUEST['result'] == '1') {?> selected<?php }?>>Success</option> <option value="0"<?php if ($_REQUEST['result'] == '0') {?> selected<?php }?>>Failed</option> </select> </td> <td nowrap style='white-space: nowrap;' width="50"> Search: </td> <td width="1"> <input type="text" name="filter" size="20" value="<?php print $_REQUEST["filter"];?>"> </td> <td nowrap style='white-space: nowrap;'> <input type="image" src="images/button_go.gif" name="go" alt="Go" border="0" align="absmiddle"> <input type="image" src="images/button_clear.gif" name="clear" alt="Clear" border="0" align="absmiddle"> <input type="image" src="images/button_purge.gif" name="purge" alt="Purge" border="0" align="absmiddle"> </td> </tr> </table> </td> <input type='hidden' name='page' value='1'> <input type='hidden' name='action' value='view_user_log'> </form> </tr>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -