⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 query.php

📁 极限网络智能办公系统 Office Automation V3.0官方100%源代码.
💻 PHP
字号:
<?
include_once("inc/auth.php");
include_once("inc/utility_all.php");
?>

<html>
<head>
<title>人员查询 </title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

</head>

<body class="bodycolor" topmargin="5"  onload="document.form1.USER_NAME.focus();">
<?
  $connection=OpenConnection();
?>
<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
  <tr>
    <td class="Big"><img src="/images/menu/infofind.gif" WIDTH="22" HEIGHT="20" align="absmiddle"><span class="big3"> 人员查询 </span>
    </td>
  </tr>
</table>

<table border="0" cellspacing="1" width="450" class="small" bgcolor="#000000" cellpadding="3" align="center" >
  <form action="search.php"  method="post" name="form1" >  
   <tr>
    <td nowrap class="TableData">姓名: </td>
    <td nowrap class="TableData">
        <input type="text" name="USER_NAME" class="BigInput" size="10" maxlength="25">&nbsp;
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData">部门:</td>
    <td nowrap class="TableData">
        <select name="DEPT_ID" class="BigSelect">
          <option value="all" selected>所有</option>
<?
      echo my_dept_tree(0,$DEPT_ID,0);
?>
        </select>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData">性别:</td>
    <td nowrap class="TableData">
        <select name="SEX" class="BigSelect">
          <option value="ALL" selected>所有 </option>
          <option value="0">男 </option>
          <option value="1">女 </option>
        </select>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData">单位电话: </td>
    <td nowrap class="TableData">
        <input type="text" name="TEL_NO_DEPT" class="BigInput" size="15" maxlength="25">&nbsp;
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData">E-mail: </td>
    <td nowrap class="TableData">
        <input type="text" name="EMAIL" class="BigInput" size="25" maxlength="200">&nbsp;
    </td>
   </tr>
   <tr>
    <td nowrap  class="TableControl" colspan="2" align="center">
        <input type="submit" value="查询" class="BigButton" title="模糊查询" name="button">
    </td>
   </tr>
  </form>
</table>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -