mirror of
https://git.code.sf.net/p/quake/website
synced 2025-03-25 02:10:47 +00:00
19 lines
490 B
PHP
19 lines
490 B
PHP
<? // Preamble
|
|
$pageName = "Search Results";
|
|
$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;
|
|
require("lib/sql.php");
|
|
require("news_funcs.php");
|
|
include("old_news.php");
|
|
}
|
|
else {
|
|
echo '<P>That type of search isn\'t supported yet. Please check back later.';
|
|
}
|
|
?>
|
|
<?
|
|
require("parts/postamble.php"); // Finish this sucker up
|
|
?>
|