website/news.php
Jeff Teunissen 7915df0394 The beginnings of SQL support. Until the login stuff is taken care of,
you'll need to send news updates to me for posting with MySQL.
2000-05-06 03:11:24 +00:00

32 lines
804 B
PHP

<? // Preamble
$pageName = "News Archives";
$focused = "news"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
?>
<!--SEARCHME-->
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
<TR vAlign="top">
<TD colSpan="2"><? // News display
tableBoxHeader( 'black', tableHeadColor );
tableTitle( 'All News', 1, tableHeadColor );
require("news_funcs.php");
include("old_news.php");
tableBoxFooter();
?></TD>
</TR>
<TR vAlign=top>
<? tableSpacer(9, 9, 1, "black"); ?>
</TR>
<TR vAlign=top>
<TD align="center">
<? include("sponsor_incl.html"); ?>
</TD>
</TR>
<TR vAlign=top>
<? tableSpacer(9, 9, 1, "black"); ?>
</TR>
</TABLE>
<!--NOSEARCH-->
<?
require("parts/postamble.php"); // Finish this sucker up
?>