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

📄 unitesort.php

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

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

if(!empty($_GET['do'])) {
	if($_GET['do']==='unite') {
		$sid=$_POST['sid'];
		$tosid=$_POST['tosid'];
		if($sid!='' && $tosid!='') {
			query("UPDATE duoxun_subject SET sid='$tosid' WHERE sid='$sid'");
			query("DELETE duoxun_sort WHERE sid='$sid'");
			header("Location: job.php?job=unitesort&unite=success");
		} else {
			header("Location: job.php?job=unitesort&unite=fail");
		}
	}
}

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

?>

⌨️ 快捷键说明

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