summaryrefslogtreecommitdiff
path: root/website/list/main.inc.php
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2005-10-27 15:08:39 +0000
committerHenri Herscher <henri@oreka.org>2005-10-27 15:08:39 +0000
commite76fa0b3e203a5eeebc15eed92be79933bd94457 (patch)
tree6b007edae582fb67b69393c35544ed8bd96274ec /website/list/main.inc.php
parent0fd6bacf4e3cf06208d3d0327672d9446094e0a6 (diff)
First checkin
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@18 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'website/list/main.inc.php')
-rw-r--r--website/list/main.inc.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/website/list/main.inc.php b/website/list/main.inc.php
new file mode 100644
index 0000000..24de430
--- /dev/null
+++ b/website/list/main.inc.php
@@ -0,0 +1,34 @@
+<?php
+
+$charset = "iso-8859-1";
+
+function Top($title)
+{
+ header("Content-type: text/html; charset=$charset");
+
+ print "<html><head><title>$title</title></head>\n";
+
+ print "<body bgcolor=\"#ffffff\">\n";
+
+ print "<center>\n";
+ print "<a href=\"http://oreka.sourceforge.net\">\n";
+ print "<img src=../images/oreka.jpg width=253 height=100 border=0>\n";
+ print "</a>\n";
+
+ print '<table border="0" cellpadding="1" cellspacing="0" bgcolor="#000099" width="80%"><tr><td>';
+ print '<table border="0" cellspacing="1" cellpadding="4" width="100%">';
+ print '<tr><td align="center" bgcolor="#dddddd">';
+ print '<font size="+1"><b>';
+ print $title;
+ print '<b></font>';
+ print '</td></tr>';
+ print '<tr><td align="left" bgcolor="#ffffff">';
+}
+
+function Bottom()
+{
+ print '</td></tr></table></td></tr></table></center>';
+ print '</body></html>';
+}
+
+?>