📄 flow_xml.php
字号:
<?php
include_once( "inc/conn.php" );
include_once( "inc/xtree_xml.inc.php" );
header( "Expires: Mon, 26 Jul 1997 05:00:00 GMT" );
header( "Cache-Control: no-cache, must-revalidate" );
header( "Pragma: no-cache" );
header( "Content-Type: text/xml" );
$xtreeXml = new xtreexml( );
$xtreeXml->initxml( );
global $connection;
$sql = "SELECT * FROM flow_type WHERE FLOW_SORT=".$_REQUEST['SORT_ID']."";
$rs = exequery( $connection, $sql );
while ( $row = mysql_fetch_array( $rs ) )
{
$flowid = $row['FLOW_ID'];
$flowname = $row['FLOW_NAME'];
$flowname = iconv( "GB2312", "UTF-8", $flowname );
$src = "";
$action = "flowmain.php?FLOW_ID=".$flowid;
$target = "flowmain";
$xtreeXml->creatitem( $flowname, $action, $src, $target, $icon );
}
$xtreeXml->endxml( );
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -