📄 query.php
字号:
<?php
include_once( "inc/auth.php" );
include_once( "inc/utility_org.php" );
$PRIV_OP_FLAG = 0;
$MODULE_ID = "2";
include_once( "inc/my_priv.php" );
echo "\r\n<html>\r\n<head>\r\n<title>查询用户</title>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">\r\n</head>\r\n\r\n<body class=\"bodycolor\" topmargin=\"5\" onload=\"document.form1.USER_ID.focus();\">\r\n\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"3\" class=\"small\">\r\n <tr>\r\n <td class=\"Big\"><img src=\"/images/menu/infofind.gif\" align=\"absmiddle\"><span class=\"big3\"> 查询用户</span>\r\n </td>\r\n </tr>\r\n</table>\r\n\r\n<table class=\"TableBlock\" width=\"90%\" align=\"center\">\r\n <form action=\"search.php\" name=\"form1\">\r\n <tr>\r\n <td nowrap class=\"TableData\" width=\"120\">用户名:</td>\r\n <td nowrap class=\"TableData\">\r\n <input type=\"text\" name=\"USER_ID\" class=\"BigInput\" size=\"20\" maxlength=\"20\"> \r\n </td>\r\n </tr>\r\n <tr>\r\n <td nowrap class=\"TableData\">真实姓名:</td>\r\n <td nowrap class=\"TableData\">\r\n <input type=\"text\" name=\"USER_NAME\" class=\"BigInput\" size=\"10\" maxlength=\"10\"> \r\n </td>\r\n </tr>\r\n <tr>\r\n <td nowrap class=\"TableData\">别名:</td>\r\n <td nowrap class=\"TableData\">\r\n <input type=\"text\" name=\"BYNAME\" class=\"BigInput\" size=\"10\" maxlength=\"10\"> \r\n </td>\r\n </tr>\r\n <tr>\r\n <td nowrap class=\"TableData\">性别:</td>\r\n <td nowrap class=\"TableData\">\r\n <select name=\"SEX\" class=\"BigSelect\">\r\n <option value=\"\"></option>\r\n <option value=\"0\">男</option>\r\n <option value=\"1\">女</option>\r\n </select>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td nowrap class=\"TableData\">部门:</td>\r\n <td nowrap class=\"TableData\">\r\n <select name=\"DEPT_ID\" class=\"BigSelect\">\r\n <option value=\"\"></option>\r\n";
echo my_dept_tree( 0, 0, $MY_PRIV );
echo " </select>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td nowrap class=\"TableData\">角色:</td>\r\n <td nowrap class=\"TableData\">\r\n <select name=\"USER_PRIV\" class=\"BigSelect\">\r\n <option value=\"\"></option>\r\n";
echo my_role_tree( $ROLE_PRIV, $PRIV_ID_STR );
echo " </select>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td nowrap class=\"TableControl\" colspan=\"2\" align=\"center\">\r\n <input type=\"submit\" value=\"查询\" class=\"BigButton\" title=\"查询用户\" name=\"button\"> \r\n </td>\r\n </form>\r\n</table>\r\n\r\n</body>\r\n</html>";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -