index.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:2k
- <?php
- // +-------------------------------------------------------------+
- // | DeskPRO v [2.0.1 Production]
- // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
- // | Supplied by WTN-WDYL
- // | Nullified by WTN-WDYL
- // | Distribution via WebForum, ForumRU and associated file dumps
- // +-------------------------------------------------------------+
- // | DESKPRO IS NOT FREE SOFTWARE
- // +-------------------------------------------------------------+
- // | License ID : Full Enterprise License =) ...
- // | License Owner : WTN-WDYL Team
- // +-------------------------------------------------------------+
- // | $RCSfile: index.php,v $
- // | $Date: 2004/02/10 01:34:30 $
- // | $Revision: 1.10 $
- // +-------------------------------------------------------------+
- // | File Details:
- // | - Resource management index.
- // +-------------------------------------------------------------+
- error_reporting(E_ALL ^ E_NOTICE);
- include "./../global.php";
- tech_nav('resources');
- ?>
- <table cellpadding="4"><tr><td colspan="4"><b>You have the following types of resources:</b></td></tr>
- <?php
- $array[] = "<a href="./files.php">Your Files</a>";
- $array[] = "<a href="./notes.php">Your Notes</a>";
- $array[] = "<a href="./bookmarks.php">Your Bookmarks</a>";
- $array[] = "<a href="./../tickets/saved.php">Your Saved Tickets</a>";
- $array[] = "<a href="./folders.php">Manage Your Folders</a>";
- foreach ($array AS $key => $var) {
- echo "<tr><td>" . html_image('tech/bul083.gif') . "</td><td>$var</td></tr>";
- }
- echo "</table>";
- tech_footer();
- ?>