website/search.php
2000-06-21 05:17:08 +00:00

46 lines
1.5 KiB
PHP

<?php
if ($type_of_search == "news") {
$string = AddSlashes($words);
include("old_news.php");
}
elseif ($type_of_search == "lists") {
$string = urlencode(StripSlashes($words));
header ("Location: http://www.geocrawler.com/search/?config=856&words=$string");
elseif ($type_of_search == "site") {
$pageName = "Search Results";
$focused = "none"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
// Start actual search
$lib = dblist();
$dbm = dbmopen("siteindex.db","r");
if (dbmexists($dbm, $string)) {
$parseMe = dbmfetch($dbm, $string);
}
dbmclose($dbm);
if ($parseMe) {
echo $parseMe;
$filenames = preg_split("/&&/", $parseMe);
for ($i = 0;$i < sizeof($filenames);$i++) {
$temp = $filenames[$i];
if ($files[$temp]) {
$files[$temp]++;
} else {
$files[$temp] = 0;
}
}
while (list($key,$val) = each ($files)) {
echo "<P><A HREF=\"$key\">$key</A> - $val hits";
}
} else {
echo "<P>Sorry, no pages found containing '$words'";
}
require("parts/postamble.php"); // Finish this sucker up
} else {
// Preamble
$pageName = "Search Results";
$focused = "none"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
echo '<P>That type of search isn\'t supported yet. Please check back later.';
require("parts/postamble.php"); // Finish this sucker up
}
?>