$desc = "Enter a keyword or phrase and this tool will show Google's search engine results for it from your choice of 20 Google data centers.";
$title = "Google datacenter search";
include("header.php");
?>
if(@$_REQUEST['search'] && @$_REQUEST['page'] && @$_REQUEST['searchop'] && @$_REQUEST['res'] && @$_REQUEST['results'] && checkImage())
{
list($from,$to) = split(":",$_REQUEST['results']);
for($i=$from-1;$i<$to;$i++)
{
$datacenter = $datacenters[$i];
$start = (intval($_REQUEST['page'])-1)*$_REQUEST['res'];
$num = $_REQUEST['res'];
$q = urlencode($_REQUEST['search']);
$url = $_REQUEST['searchop']=="full" ? "search" : "ie";
echo <<
|
|
Google Datacenter: $datacenter
|
|
|
EOF;
}
}
?>