user_list.php

来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 46 行

PHP
46
字号
<?
ob_start();
?>
    <table border="0" cellspacing="1" width="100%" class="small" bgcolor="#000000" cellpadding="3" align="center">
       <tr class="TableHeader" onclick="clickMenu('1')" style="cursor:hand" title="点击伸缩列表">
         <td nowrap align="center"><b>在职人员</b></td>
       </tr>
    </table>
    <table border="0" cellspacing="1" width="100%" class="small" cellpadding="3" id="1">
    <tr>
      <td>
<?
$PARA_URL1="";
$PARA_URL2="/general/info/user/user.php";
$PARA_TARGET="user_info";
$PRIV_NO_FLAG=0;

include_once("inc/user_list/index.php");
?>
       </td>
     </tr>
    </table>

<br>
<div align="center">
  <input type="button" value="外出人员" class="BigButton" onClick="parent.user_info.location='out.php'">
</div>

<br>
<div align="center">
  <input type="button" value="人员查询" class="BigButton" onClick="parent.user_info.location='query.php'">
</div>
<script language="JavaScript">
function clickMenu(ID)
{

    targetelement=document.all(ID);
    if (targetelement.style.display=="none")
        targetelement.style.display='';
    else
        targetelement.style.display="none";
}
</script>

</body>
</html>

⌨️ 快捷键说明

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