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

📄 go.php

📁 本代码是为客户联系管理而做的系统
💻 PHP
字号:
<?php
// +-------------------------------------------------------------+
// | DeskPRO v [2.0.1 Production]
// | Copyright (C) 2001 - 2004 Headstart Solutions Limited
// | Supplied by WTN-WDYL
// | Nullified by WTN-WDYL
// | Distribution via WebForum, ForumRU and associated file dumps
// +-------------------------------------------------------------+
// | DESKPRO IS NOT FREE SOFTWARE
// +-------------------------------------------------------------+
// | License ID : Full Enterprise License =) ...
// | License Owner : WTN-WDYL Team
// +-------------------------------------------------------------+
// | $RCSfile: go.php,v $
// | $Date: 2004/02/10 01:34:28 $
// | $Revision: 1.6 $
// +-------------------------------------------------------------+
// | File Details:
// | - Redirector for home page selections
// +-------------------------------------------------------------+

error_reporting(E_ALL ^ E_NOTICE);

include "./../global.php";

// globalise variables
$global = array	(
			array('id')
);
rg($global);

if ($_REQUEST['own_tickets_submit']) {
	$url = $_REQUEST['own_ticket'];
} elseif ($_REQUEST['other_tickets_submit']) {
	$url = $_REQUEST['other_ticket'];
} elseif ($_REQUEST['new_tickets_submit']) {
	$url = $_REQUEST['new_ticket'];
} elseif ($_REQUEST['messages_submit']) {
	$url = $_REQUEST['messages'];
} elseif ($_REQUEST['watches_submit']) {
	$url = $_REQUEST['watches'];
} elseif ($_REQUEST['odwatches_submit']) {
	$url = $_REQUEST['odwatches'];
} elseif ($_REQUEST['tasks_submit']) {
	$url = $_REQUEST['tasks'];
} elseif ($_REQUEST['odtasks_submit']) {
	$url = $_REQUEST['odtasks'];
} elseif ($_REQUEST['faqs_submit']) {
	$url = $_REQUEST['faqs'];
} elseif ($_REQUEST['run_saved']) {
	$url = $_REQUEST['saved_search'] . "&save_search_op=Run";
}

if (!$url) {
	$url = 'main.php';
	$message = 'Nothing selected.';
} else {
	$message = 'Viewing selection...';
}

jump($url, $message);

⌨️ 快捷键说明

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