load_results.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:2k
- <?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: load_results.php,v $
- // | $Date: 2004/02/10 01:34:30 $
- // | $Revision: 1.11 $
- // +-------------------------------------------------------------+
- // | File Details:
- // | - Redirection to load a result set in to the frame set.
- // +-------------------------------------------------------------+
- error_reporting(E_ALL ^ E_NOTICE);
- // start file
- require("./../global.php");
- // globalise variables
- $global = array (
- array('searchid'), // the searchid
- array('id'), // ticketid
- array('num', 'number') // number of ticket in search results
- );
- rg($global);
- $self = urlencode($_SERVER['REQUEST_URI']);
- echo "<LINK href="../../includes/css/admin-tech.css" rel=stylesheet><br /><center><b>Loading Results ...</b></center>
- <SCRIPT langauge="javascript">
- if (parent.location.href == self.location.href) {
- window.location.href = '../home/index.php?url=$self';
- } else {
- top.center.location.href="ticketview.php?id=$id";
- if ((top.document.getElementById('rowframeset').rows == '*, 120, 0')) {
- top.footer.location.href="./../home/footer_tickets.php?searchid=$searchid&id=$id&num=$num&advance=$_REQUEST[advance]";
- }
- }
- </SCRIPT>";
- ?>