load_results.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <?php
  2. // +-------------------------------------------------------------+
  3. // | DeskPRO v [2.0.1 Production]
  4. // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
  5. // | Supplied by WTN-WDYL
  6. // | Nullified by WTN-WDYL
  7. // | Distribution via WebForum, ForumRU and associated file dumps
  8. // +-------------------------------------------------------------+
  9. // | DESKPRO IS NOT FREE SOFTWARE
  10. // +-------------------------------------------------------------+
  11. // | License ID : Full Enterprise License =) ...
  12. // | License Owner : WTN-WDYL Team
  13. // +-------------------------------------------------------------+
  14. // | $RCSfile: load_results.php,v $
  15. // | $Date: 2004/02/10 01:34:30 $
  16. // | $Revision: 1.11 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Redirection to load a result set in to the frame set.
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL ^ E_NOTICE);
  22. // start file
  23. require("./../global.php");
  24. // globalise variables
  25. $global = array (
  26. array('searchid'), // the searchid
  27. array('id'), // ticketid
  28. array('num', 'number') // number of ticket in search results
  29. );
  30. rg($global);
  31. $self = urlencode($_SERVER['REQUEST_URI']);
  32. echo "<LINK href="../../includes/css/admin-tech.css" rel=stylesheet><br /><center><b>Loading Results ...</b></center>
  33. <SCRIPT langauge="javascript">
  34.     if (parent.location.href == self.location.href) {
  35.         window.location.href = '../home/index.php?url=$self';
  36.     } else {
  37. top.center.location.href="ticketview.php?id=$id";
  38. if ((top.document.getElementById('rowframeset').rows == '*, 120, 0')) {
  39. top.footer.location.href="./../home/footer_tickets.php?searchid=$searchid&id=$id&num=$num&advance=$_REQUEST[advance]";
  40. }
  41. }
  42. </SCRIPT>";
  43. ?>