website/news.php

24 lines
484 B
PHP
Raw Normal View History

<? // Preamble
2000-05-15 21:00:00 +00:00
$pageName = "News Archives";
2000-05-15 20:58:46 +00:00
$focused = "none"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
2000-05-15 20:58:46 +00:00
?>
<?
require("news_funcs.php");
2000-05-15 20:58:46 +00:00
?>
<TABLE 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>
<?
require("parts/postamble.php"); // Finish this sucker up
?>