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

电子政务应用

开发平台:

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: faqpop.php,v $
  15. // | $Date: 2004/02/10 01:34:30 $
  16. // | $Revision: 1.13 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - FAQ article popup.
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL ^ E_NOTICE);
  22. include "./../global.php";
  23. // default do
  24. $_REQUEST['do'] = trim($_REQUEST['do']);
  25. if (!isset($_REQUEST['do']) or $_REQUEST['do'] == "") {
  26. $_REQUEST['do'] = "categories";
  27. }
  28. // globalise variables
  29. $global = array (
  30. array('id')
  31. );
  32. rg($global);
  33. include ("./../faq/faq_include.php");
  34. tech_mini_header();
  35. table_header('FAQ', NULL, NULL, 1);
  36. table_content(NULL, NULL);
  37. table_footer();
  38. ############################### LIST CATEGORIES ###############################
  39. $categories = faq_categoryjump();
  40. echo table_border("<table cellpadding="3" border="0"><form><tr><td><b>Pick Category</b></td><td>" . form_select('category', $categories, '', $_REQUEST['category']) . "</td><td><input type="submit" name="View Articles" value="View Articles">" . form_hidden('do', 'pickarticle') . "</td></tr></form></table>");
  41. echo "<br />";
  42. ############################### LIST ARTICLES ###############################
  43. if ($_REQUEST['category']) {
  44. echo "<form name="dpform">";
  45. $db->query("SELECT id, title, answer
  46. FROM faq_articles
  47. WHERE category = '$_REQUEST[category]'
  48. ");
  49. while ($result = $db->row_array()) {
  50. $var = 'article' . $result['id'];
  51. $link = $settings['helpdesk_url'] . "/faq.php?do=article&articleid=$result[id]";
  52. $table[] = array(
  53. $result['title'] . form_hidden('article' . $result[id], $result['answer']),
  54. "<a href="javascript:window.opener.top.empty.insertAtCaret(window.opener.top.center.document.dpreply.reply, '".addslashes_js($result['answer'])."');">Insert Article</a>",
  55. "<a href="javascript:window.opener.top.empty.insertAtCaret(window.opener.top.center.document.dpreply.reply, '".addslashes_js($link)."');">Insert Link</a>"
  56. );
  57. }
  58. if (is_array($table)) {
  59. table_header('Faq Articles');
  60. table_content('', $table, '', '', '', '', array('', '80', '80'));
  61. table_footer();
  62. } else {
  63. echo "<center><b>No articles for this category</b></center>";
  64. }
  65. echo "</form>";
  66. }