index.php

来自「极限网络智能办公系统 - Office Automation 2008 官方10」· PHP 代码 · 共 21 行

PHP
21
字号
<?php
 

include_once( "inc/auth.php" );
$query = "SELECT * from FLOW_TYPE where FLOW_ID=".$FLOW_ID;
$cursor1 = exequery( $connection, $query );
if ( $ROW = mysql_fetch_array( $cursor1 ) )
{
	$SORT_ID = $ROW['FLOW_SORT'];
}
echo "\r\n<html>\r\n<head>\r\n<title>权限设置</title>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">\r\n</head>\r\n\r\n<frameset rows=\"30,*\"  cols=\"*\" frameborder=\"NO\" border=\"0\" framespacing=\"0\" id=\"frame1\">\r\n    <frame name=\"menu_top\" scrolling=\"no\" noresize src=\"menu_top.php?FLOW_ID=";
echo $FLOW_ID;
echo "&SORT_ID=";
echo $SORT_ID;
echo "\" frameborder=\"0\">\r\n    <frame name=\"menu_main\" scrolling=\"auto\" noresize src=\"set_manage.php?FLOW_ID=";
echo $FLOW_ID;
echo "&SORT_ID=";
echo $SORT_ID;
echo "\" frameborder=\"1\">\r\n</frameset>\r\n\r\n</html>\r\n";
?>

⌨️ 快捷键说明

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