query.php

来自「通达OA2007SE源代码 非常好的」· PHP 代码 · 共 76 行

PHP
76
字号
<?
  include_once 'inc/auth.php';
  include_once 'inc/utility_all.php';
  echo '
<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();">
<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">';
  echo '<s';
  echo 'pan 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" 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;
';
  echo '    </td>
   </tr>
   <tr>
    <td nowrap class="TableData">部门:</td>
    <td nowrap class="TableData">
        ';
  echo '<s';
  echo 'elect name="DEPT_ID" class="BigSelect">
          <option value="all" selected>所有</option>
';
  echo my_dept_tree (0, $DEPT_ID, 0);
  echo '        </select>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData">性别:</td>
    <td nowrap class="TableData">
        ';
  echo '<s';
  echo 'elect 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';
  echo '>
   </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>
  </for';
  echo 'm>
</table>
</body>
</html>';
?>

⌨️ 快捷键说明

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