index.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: index.php,v $
  15. // | $Date: 2004/02/10 01:34:30 $
  16. // | $Revision: 1.10 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Resource management index.
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL ^ E_NOTICE);
  22. include "./../global.php";
  23. tech_nav('resources');
  24. ?>
  25. <table cellpadding="4"><tr><td colspan="4"><b>You have the following types of resources:</b></td></tr>
  26. <?php
  27. $array[] = "<a href="./files.php">Your Files</a>";
  28. $array[] = "<a href="./notes.php">Your Notes</a>";
  29. $array[] = "<a href="./bookmarks.php">Your Bookmarks</a>";
  30. $array[] = "<a href="./../tickets/saved.php">Your Saved Tickets</a>";
  31. $array[] = "<a href="./folders.php">Manage Your Folders</a>";
  32. foreach ($array AS $key => $var) {
  33. echo "<tr><td>" . html_image('tech/bul083.gif') . "</td><td>$var</td></tr>";
  34. }
  35. echo "</table>";
  36. tech_footer();
  37. ?>