📄 process_do.php
字号:
<?php
include_once( "inc/auth.php" );
$f = $_REQUEST['f'];
switch ( $f )
{
case "save" :
$order = $_REQUEST['order'];
$exar = explode( ":", $order );
$PRCS_TO = str_replace( "left_col(", "", $exar[0] );
$PRCS_TO = str_replace( ")", "", $PRCS_TO );
$sql = "\r\n\t\t\t\tUPDATE flow_process \r\n\t\t\t\t\tSET PRCS_TO='".$PRCS_TO."' \r\n\t\t\t\t\tWHERE ID='".$_REQUEST['ID']."' \r\n\t\t\t\t\t\tAND FLOW_ID='".$_REQUEST['FLOW_ID']."' \r\n\t\t\t\t";
exequery( $connection, $sql );
header( "location:set_process.php?ID=".$_REQUEST['ID']."&FLOW_ID=".$_REQUEST['FLOW_ID']."&o=1" );
exit( );
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -