📄 save_move.php
字号:
<?php
include_once( "inc/auth.php" );
include_once( "inc/document_function.php" );
include_once( "inc/utility_all.php" );
$DO_WHAT = $_REQUEST['do_what'];
if ( $DO_WHAT == "doc" )
{
$content_id = $_REQUEST['content_id'];
$sort_id = $_REQUEST['sort_id'];
$tokenarr = tokenizequoted( $content_id );
while ( list( , $DOCUMENT_ID ) = each( $tokenarr ) )
{
$sql = "\r\n\t\tUPDATE file_content SET SORT_ID=".$sort_id." WHERE CONTENT_ID = ".$DOCUMENT_ID."\r\n\t\t";
$rs = exequery( $connection, $sql );
}
}
else
{
$go_file = $_REQUEST['go_file'];
$change_file = $_REQUEST['change_file'];
$sql = "\r\n\t\tUPDATE file_sort SET SORT_PARENT = ".$go_file." WHERE SORT_ID = ".$change_file."\r\n\t\t";
$rs = exequery( $connection, $sql );
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -