⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 move.php

📁 程序安装简便容易
💻 PHP
字号:
<?php
!$_SERVER['PHP_SELF'] && $_SERVER['PHP_SELF']=$_SERVER['SCRIPT_NAME'];
substr($_SERVER['PHP_SELF'],-9,-4)!=='admin' && exit('Forbidden');

include_once(R_P.'cache/sortcache.php');

if(!empty($_GET['do'])) {
	if($_GET['do']=='move') {
		$aid=$_GET['id'];
		$to_sid=$_POST['to_sid'];
		if(strpos($aid, ',')) {
			$aid=substr($aid,0,-1);
			$aid=explode(',',$aid);
			foreach($aid as $value) {
				query("UPDATE duoxun_subject SET sid='$to_sid' WHERE aid='$value'");
			}
		} else {
			query("UPDATE duoxun_subject SET sid='$to_sid' WHERE aid='$aid'");
		}
		echo "<script language=\"javascript\">alert(\"操作成功!\")</script>";
		echo "<meta http-equiv='refresh' content='0;url={$_COOKIE['article_u']}'>";
		exit;
	}
}

require_once template('move','admin');

?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -