topbar.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: topbar.php,v $
  15. // | $Date: 2004/02/10 01:34:25 $
  16. // | $Revision: 1.7 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Top navigation bar (administration interface)
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL & ~E_NOTICE);
  22. include ('./global.php');
  23. $settings = $db->query_return("SELECT * FROM settings WHERE settings = 'deskpro_version'");
  24. ?>
  25. <HTML>
  26. <HEAD>
  27. <style type="text/css">
  28. a.nav, a.nav:visited {color: white; font-weight: bold; font-size: 8pt; font-family: verdana, helvetica, sans-serif; text-decoration: none;}
  29. a.nav:hover {color: #ffdc00; text-decoration: underline;}
  30. a.nav2, a.nav:visited {color: white; font-size: 8pt; font-family: verdana, helvetica, sans-serif; text-decoration: none;}
  31. a.nav2:hover {color: #ffdc00; text-decoration: underline;}
  32. td,li,p,input,select,textarea {
  33. font-family: verdana,arial,helvetica,sans-serif;
  34. font-size: 8pt;
  35. color: #ffdc00;
  36. }
  37. </style>
  38. </head>
  39. <BODY bgcolor="darkblue">
  40. <table width="100%">
  41. <tr>
  42. <td><b>Welcome back <?php echo $user[username]; ?> [<a class="nav" href="login.php?do=logout" target="_parent">Log Out</a>]</b></td>
  43. <td align="right">
  44. <!--WTN-WDYL-->Powered by DeskPRO v<?php echo $settings[value]; ?>
  45. </td>
  46. </tr>
  47. </table>
  48. </body>
  49. </html>