"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) PHP source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "index.php" see the
Fossies "Dox" file reference documentation.
1 <?
2 /*
3 This file is part of Event Horizon (EVH).
4
5 EVH is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 EVH is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 include "inc.php";
20 //setlocale(LC_ALL, 'no_NO.utf8');
21 ?>
22 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
23 <html>
24 <head>
25 <title><?=$appname; ?></title>
26 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
27 <link href="default.css" rel="stylesheet" type="text/css">
28 </head>
29 <body>
30 <?
31
32 //echo "<p> <p> <p><center>$appname is currently down for maintenance.<p>Sorry for the inconvenience.</center>";
33 //exit;
34
35 ?>
36 <?=$titleandmenu; ?>
37 <table width="50%" border="0" align="center" cellpadding="0" cellspacing="0">
38 <tr>
39 <th class="content-text" scope="row" align="left"><strong><?=$apppurpose; ?></strong>
40 </th>
41 </tr>
42 </table>
43 <p></p>
44 <table width="500" border="0" align="center" cellpadding="3" cellspacing="1" class="border">
45 <tr>
46 <th width="150" align="left" valign="top" nowrap class="header" scope="row" rowspan="4"> <strong>.:.</strong> Menu</th>
47 <td align="left" valign="middle" nowrap class="content" scope="row"><a href="upload.php">Upload new file via HTTP</a></td>
48 </tr>
49 <?
50 if ($enableFTP == 1) {
51 ?> <tr>
52 <td align="left" valign="middle" nowrap class="content" scope="row"><a href="ftp-up.php">Upload new file via FTP</a></td>
53 </tr>
54 <?
55 }
56 ?>
57 <tr>
58 <td align="left" valign="middle" nowrap class="content" scope="row"><a href="download.php">Download existing file</a></td>
59 </tr>
60 <tr>
61 <td align="left" valign="middle" nowrap class="content" scope="row"><a href="download.php?mod=1">Modify existing file</a> </td>
62 </tr>
63 </table>
64 <?
65 print $footer;
66 ?>
67 </body>
68 </html>