website/search.php

18 lines
428 B
PHP

<? // Preamble
$pageName = "Search";
$focused = "none"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
?>
<?php
if ($type_of_search == "news") {
$string = $words;
include("news_search.php");
}
else {
echo '<P>That type of search isn\'t supported yet. Please check back later.';
}
?>
<?
require("parts/postamble.php"); // Finish this sucker up
?>