website/news.php

25 lines
548 B
PHP
Raw Normal View History

<? // Preamble
2000-05-15 21:00:00 +00:00
$pageName = "News Archives";
2000-07-08 04:06:04 +00:00
$focused = "none"; // Dock icon name to get a border
2001-10-17 05:46:43 +00:00
$currPage = "news"; // Name of the page, for the menu
2000-07-08 04:06:04 +00:00
require "parts/preamble.php"; // Load most of document
2000-05-15 20:58:46 +00:00
?>
<?
2000-07-08 04:06:04 +00:00
need ("news");
2000-05-15 20:58:46 +00:00
?>
2000-06-17 11:41:12 +00:00
<TABLE width="50%" cellSpacing="2" cellPadding="0" border="0">
<TR vAlign="top">
<TD align="center">
<? monthForm ("", ""); ?>
</TD>
</TR>
<TR vAlign="top">
<TD align="center">
<? keywordForm (""); ?>
</TD>
</TR>
</TABLE>
<?
2000-07-08 04:06:04 +00:00
require "parts/postamble.php"; // Finish this sucker up
?>