print.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: print.php,v $
  15. // | $Date: 2004/02/10 01:34:25 $
  16. // | $Revision: 1.10 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Printable ticket view.
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL & ~E_NOTICE);
  22. require_once('./global.php');
  23. //Nullify WTN-WDYL Team
  24. // default do
  25. $_REQUEST['do'] = trim($_REQUEST['do']);
  26. if (!isset($_REQUEST['do']) or $_REQUEST['do'] == "") {
  27. $_REQUEST['do'] = "view";
  28. }
  29. // globalise variables
  30. $global = array (
  31. array('ticketref')
  32. );
  33. rg($global);
  34. ############################### PERMISSIONS AND VALIDATION ###############################
  35. // check ticket ref
  36. if (!$ticketref) {
  37. error("error_noticket");
  38. }
  39. // check user
  40. if (!$session[userid]) {
  41. login_form();
  42. }
  43. $ticket = $db->query_return("
  44. SELECT ticket.*, ticket_cat.name AS category, ticket_pri.name AS priority
  45. FROM ticket
  46. LEFT JOIN ticket_cat ON (ticket.category = ticket_cat.id)
  47. LEFT JOIN ticket_pri ON (ticket.priority = ticket_pri.id)
  48. WHERE ticket.ref = '" . addslashes($ticketref) . "' 
  49. AND ticket.userid = '$session[userid]'
  50. ");
  51. if (!$db->num_rows()) {
  52. // no result returned
  53. error('error_noticket');
  54. }
  55. header('Content-Type: text/plain');