?? restore.php
字號:
<?
include_once 'inc/auth.php';
include_once 'inc/utility_all.php';
include_once '../prcs_role.php';
if (!run_role ($RUN_ID, 1))
{
continue;
}
$query = '' . 'SELECT MAX(PRCS_ID) from FLOW_RUN_PRCS WHERE RUN_ID=' . $RUN_ID;
$PRCS_MAX = 0;
$cursor = exequery ($connection, $query);
if ($ROW = mysql_fetch_array ($cursor))
{
$PRCS_MAX = $ROW[0];
}
$query = '' . 'update FLOW_RUN_PRCS set PRCS_FLAG=\'2\' where RUN_ID=' . $RUN_ID . ' and PRCS_ID=' . $PRCS_MAX . ' and OP_FLAG=\'1\'';
exequery ($connection, $query);
header ('' . 'location: query.php?FLOW_ID=' . $FLOW_ID);
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -