📄 index.php
字号:
<?php
include_once( "inc/auth.php" );
echo "<html>\r\n<head>\r\n<title>减少资产管理</title>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">\r\n";
echo "<s";
echo "cript>\r\nfunction sendForm()\r\n{\r\n document.form1.submit();\r\n}\r\n</script>\r\n</head>\r\n<body class=\"bodycolor\" topmargin=\"5\">\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/asset.gif\" align=\"absmiddle\">";
echo "<s";
echo "pan class=\"big3\"> 减少固定资产</span><br>\r\n </td>\r\n </tr>\r\n</table>\r\n<br>\r\n\r\n<table border=\"0\" cellspacing=\"1\" width=\"95%\" class=\"small\" bgcolor=\"#000000\" cellpadding=\"3\">\r\n <form enctype=\"multipart/form-data\" action=\"submit.php\" method=\"post\" name=\"form1\">\r\n <tr>\r\n <td nowrap class=\"TableData\" width=\"80\">减少类型:</td>\r\n <td nowrap class=\"TableData\">\r\n ";
echo "<s";
echo "elect name=\"DCR_PRCS_ID\" class=\"BigSelect\">\r\n";
$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'];
echo " <option value=\"";
echo $PRCS_ID;
echo "\">";
echo $PRCS_LONG_DESC;
echo "</option>\r\n";
}
echo " </select>\r\n </td>\r\n </tr>\r\n <tr align=\"center\" class=\"TableControl\">\r\n <td colspan=\"2\" nowrap>\r\n <input type=\"hidden\" value=\"";
echo $CPTL_ID;
echo "\" name=\"CPTL_ID\">\r\n <input type=\"button\" value=\"确定\" class=\"BigButton\" onclick=\"sendForm();\">\r\n <input type=\"button\" value=\"关闭\" class=\"BigButton\" onClick=\"window.close();\">\r\n </td>\r\n </tr>\r\n </form>\r\n</table>\r\n\r\n</body>\r\n</html>";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -