?? 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( );
}
?>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -