Your domain
if(@$_REQUEST['url'] && checkImage())
{
$url=str_replace ('http://', '', $_REQUEST['url']);
$url=str_replace ('https://', '', $url);
$url = urlencode($url);
$google = fetch("http://www.google.com/search?q=link:$url&hl=en&sa=N");
$msn = fetch ("http://search.msn.com/results.aspx?q=$url%20link%3A$url");
$yahoo = fetch("http://search.yahooapis.com/WebSearchService/V1/webSearch?appid=$yahooID&query=$url&results=1");
preg_match("#of .*?([\\d,]+)#",$google,$google);
$google = preg_replace("#\\D#","",@$google[1]);
$sGoogle = number_format($google);
preg_match("#Page 1 of ([\\d,]+) results#",$msn,$msn);
$msn = preg_replace("#\\D#","",@$msn[1]);
$sMsn = number_format($msn);
preg_match("#";
$str .= "Google PageRank for {$_REQUEST['url']} is: $rank / 10:
";
$str .= "";
echo $str;
}
?>