This may help some that wants a site search engine for thier site.
It utilizes Googles engine for grabbing data.
This copy-n-paste code is designed to be used with an include() or as the entire page. Your choice.
Save the page as search.php
<?php
$Your_Domain = "ronfrederick.com";
if (isset($search)) {
$url = "http://www.google.com/search?q=".$keyword." site:".$Your_Domain;
header("Location: $url");
} else {
echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n"
. "<form action=\"search.php\" method=\"post\">\n"
. "<tr><td>\n"
. "<input type=\"text\" name=\"keyword\" size=\"20\" border=\"0\">\n"
. "<input type=\"submit\" name=\"search\" value=\"Search\">\n"
. "</td></tr>\n"
. "</form>\n"
. "</table>\n";
}
?>