index.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:1k
- <?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.9 $
- // +-------------------------------------------------------------+
- // | File Details:
- // | - Ticket home.
- // +-------------------------------------------------------------+
- error_reporting(E_ALL ^ E_NOTICE);
- include "./../global.php";
- tech_nav('tickets');
- ?>
- <table cellpadding="4"><tr><td colspan="4"><b>You have the following options:</b></td></tr>
- <?php
- $array[] = "<a href="./newticket.php">Start a New Ticket</a>";
- $array[] = "<a href="./saved.php">View Saved Tickets</a>";
- $array[] = "<a href="./ticketsearch.php">Search for Tickets</a>";
- foreach ($array AS $key => $var) {
- echo "<tr><td>" . html_image('tech/bul083.gif') . "</td><td>$var</td></tr>";
- }
- echo "</table><br /><br /><br /><br/ >";
- tech_footer();
- ?>