2022-04-27 16:59:31 +00:00
|
|
|
<?php
|
2000-06-18 23:52:50 +00:00
|
|
|
$pageName = 'News Archives';
|
2007-03-09 17:16:17 +00:00
|
|
|
$currPage = 'news';
|
|
|
|
$modules = 'news_search'; // Modules to display
|
2000-06-18 23:52:50 +00:00
|
|
|
require "parts/preamble.php"; // Load most of document
|
2007-03-18 04:34:44 +00:00
|
|
|
|
|
|
|
need ('boxes news');
|
|
|
|
|
|
|
|
newsBoxOpen ("Search Results");
|
|
|
|
if ($month || $year) {
|
|
|
|
monthlyNews ($month, $year);
|
|
|
|
} else {
|
|
|
|
if ($string) {
|
|
|
|
searchNews ($string);
|
2007-03-09 17:16:17 +00:00
|
|
|
} else {
|
2007-03-18 04:34:44 +00:00
|
|
|
printNews (date ('d M Y'), 'Web Server', 'Go ahead, tough guy...use one of the forms to search the old news.');
|
2007-03-09 17:16:17 +00:00
|
|
|
}
|
2007-03-18 04:34:44 +00:00
|
|
|
}
|
|
|
|
newsBoxClose ();
|
2000-06-18 23:52:50 +00:00
|
|
|
?>
|