session_start();
/*验证*/
if(!isset($_SESSION['admin_name']) || !check_power($_SESSION['admin_name'],0))
{
  header('location:other.php');
  exit;
}