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

📄 index.php

📁 极限网络智能办公系统 Office Automation V3.0官方100%源代码.
💻 PHP
字号:
<?
include_once("inc/auth.php");
?>
<html>
<head>
<title>减少资产管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
function sendForm()
{
   document.form1.submit();
}
</script>
</head>
<body class="bodycolor" topmargin="5">

<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
  <tr>
    <td class="Big"><img src="/images/menu/asset.gif" align="absmiddle"><span class="big3"> 减少固定资产</span><br>
    </td>
  </tr>
</table>
<br>

<table border="0" cellspacing="1" width="95%" class="small" bgcolor="#000000" cellpadding="3">
 <form enctype="multipart/form-data" action="submit.php"  method="post" name="form1">
  <tr>
   <td nowrap class="TableData" width="80">减少类型:</td>
   <td nowrap class="TableData">
    <select name="DCR_PRCS_ID" class="BigSelect">
<?
 $query="SELECT * from CP_PRCS_PROP where left(PRCS_CLASS,1)='D' order by PRCS_CLASS";
 $cursor=exequery($connection,$query);
 while($ROW=mysql_fetch_array($cursor))
 {
    $PRCS_ID=$ROW["PRCS_ID"];
    $PRCS_LONG_DESC=$ROW["PRCS_LONG_DESC"];
?>
        <option value="<?=$PRCS_ID?>"><?=$PRCS_LONG_DESC?></option>
<?
 }
?>
    </select>
   </td>
  </tr>
  <tr align="center" class="TableControl">
      <td colspan="2" nowrap>
        <input type="hidden" value="<?=$CPTL_ID?>"  name="CPTL_ID">
        <input type="button" value="确定" class="BigButton" onclick="sendForm();">
        <input type="button" value="关闭" class="BigButton" onClick="window.close();">
      </td>
    </tr>
   </form>
</table>

</body>
</html>

⌨️ 快捷键说明

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