Размер файла: 2.22Kb
<?php
//скрипт переделан под engine
//скрипт переделал R&B // http://rnb.h2m.ru
//пример работы скрипта вы можете увидеть здесь http://rnb.h2m.ru/gosearch/index.php
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
extract($HTTP_GET_VARS);
extract($HTTP_POST_VARS);
extract($HTTP_COOKIE_VARS);
extract($HTTP_SERVER_VARS);
extract($HTTP_SESSION_VARS);
session_name("SESID");
session_start(); require
//////////////////////////////////////////////////////////////////////////////////////
("../config.php"); //Подключаем настройки сайта. (config.php)
require ("../themes/$themes.php"); //Вставляем скин сайта.
//////////////////////////////////////////////////////////////////////////////////////
if(@file("../themes/$themes.php"))
{include_once"../themes/$themes.php";}else{$themes="default"; include_once"../themes/$themes.php";}
//$text = @file("../local/profil/$log.prof");
//if ($text!=""){
//$udata = explode(":||:",$text[0]);
//$provlog=trim($udata[0]);
//$provpar=trim($udata[1]);
//$privat=trim($udata[10]);}
?>
<form action="index.php" method="GET">
<input type="text" name="q" <?php $q=$_GET['q'];
echo"value=\"$q\""?>>
<input type="submit" name="submit" value="Искать">
</form>
<hr />
<?php
$start=$_GET['start'];
if(empty($q)){echo"Введите запрос!";
}else{
$q=urlencode($q);
$result=file("http://www.google.ru/xhtml/search?q=$q&site=mobile&start=$start");
$respage=implode($result);
$res1=explode("<body>",$respage);
$respage=$res1[1];
$respage=str_replace("<img","<noshow",$respage);
$res=explode("<hr/>",$respage);
$respage=$res[0];
$respage=str_replace("href=\"/xhtml/search","href=\"index.php",$respage);
$respage=str_replace("<div class=\"c1\">","<hr /><div class=\"a\">",$respage);
$respage=str_replace("<span class=\"c2\">","<font color=\"yellow\">",$respage);
$respage=str_replace("</span>","</font>",$respage);
echo"$respage";
}
//echo"<hr />» <a href=\"../index.php?".SID."\"><font color=\"#FF0033\">На главную</font></a>";
include ("../templates/foot.php"); //Вставляем низ сайта.
ob_end_flush();
exit;
?>
?>