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

📄 flow_form.php

📁 泛微协同办公系统标准版E-office V5.5的源代码内含泛微办公系统V5.5自动注册文件。
💻 PHP
字号:
<?php

header( "Expires: Mon, 26 Jul 1997 05:00:00 GMT" );
header( "Cache-Control: no-cache, must-revalidate" );
header( "Pragma: no-cache" );
include_once( "inc/auth.php" );
$sql = "SELECT FORM_ID FROM flow_type WHERE FLOW_ID='".$_REQUEST['FLOW_ID']."'";
$rs = exequery( $connection, $sql );
$row = mysql_fetch_array( $rs );
$FORM_ID = $row['FORM_ID'];
$query = "SELECT FORM_NAME from FLOW_FORM_TYPE where FORM_ID={$FORM_ID}";
$cursor = exequery( $connection, $query );
if ( $ROW = mysql_fetch_array( $cursor ) )
{
	$FORM_NAME = $ROW['FORM_NAME'];
}
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 src=\"/inc/prototype.js\"></script>\r\n";
echo "<s";
echo "cript src=\"/inc/common.js\"></script>\r\n";
echo "<s";
echo "cript src=\"/inc/follow.js\"></script>\r\n";
echo "<s";
echo "cript>\r\n\r\nfunction loadingConn(divid,flowid){\r\n\tvar actionUrl = \"form_conn.php\";\r\n\tvar objDivID = document.getElementById(divid);\r\n\t\r\n\tvar saveGimg = {\r\n\t\tonCreate: function(){\r\n\t\t\tElement.show('divsave');\r\n\t\t},\r\n\t\tonComplete: function() {\r\n\t\t\tif(Ajax.activeRequestCount == 0){\r\n\t\t\t\tElement.hide('divsave');\r\n\t\t\t}\r\n\t\t}\r\n\t};\r\n\tAjax.Responders.register(saveGimg);\t\r\n\tqueryString = \"FLOW_ID=\" + flowid;\r";
echo "\n\tnew Ajax.Request\r\n\t(\r\n\t\tactionUrl,\r\n\t\t{\r\n\t\t\tmethod: \"post\",\t\r\n\t\t\tonSuccess : function(resp)\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tobjDivID.style.display = '';\r\n\t\t\t\t\t\t\t\$(divid).innerHTML = resp.responseText;\r\n\t\t\t\t\t\t},\r\n\t\t\tonFailure : function()\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\talert(\"fdf\");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t},\r\n\t\t\tparameters : queryString\r\n\t\t}\r\n\t);\r\n\r\n}\r\n\r\n</script>\r\n";
echo "<s";
echo "tyle>\r\nbody{\r\n\tmargin-left: 0px;\r\n\tmargin-top: 0px;\r\n\tmargin-right: 0px;\r\n\tmargin-bottom: 0px;\r\n\tpadding-left:10px\r\n}\r\n</style>\r\n</head>\r\n<body onload=\"setVariables(); checkLocation('divsave',120,20,1);loadingConn('formdiv',";
echo $_REQUEST['FLOW_ID'];
echo ");\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"1\" cellpadding=\"0\">\r\n  <tr class=\"tablehead2\">\r\n    <td><table><tr valign=middle > <td>";
echo "<s";
echo "pan id=\"showallid\">";
echo $FORM_NAME;
echo "</span></td></tr></table> </td>\r\n  </tr>\r\n</table>\r\n\r\n<div id=\"formdiv\" style=\"width:100%;\">\r\n\r\n\r\n</div>\r\n\r\n\r\n</body>\r\n</html>";
?>

⌨️ 快捷键说明

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