Moderators Dragos Posted January 4, 2012 Moderators Report Posted January 4, 2012 <?phpfunction gpagerank($q,$host=’toolbarqueries.google.com’,$context=NULL){$seed = “Mining PageRank is AGAINST GOOGLE’S TERMS OF SERVICE. Yes, I’m talking to you, scammer.”;$result = 0×01020345;$q = trim($q);$len = strlen($q);for ($i=0; $i<$len; $i++){$result ^= ord($seed{$i%strlen($seed)}) ^ ord($q{$i});$result = (($result >> 23) & 0x1ff) | $result << 9;}$ch=sprintf('8%x', $result);$url='http://%s/tbr?client=navclient-auto&ch=%s&features=Rank&q=info:%s';$url=sprintf($url,$host,$ch,$q);@$pr=file_get_contents($url,false,$context);return $pr?substr(strrchr($pr, ':'), 1):false;}?> Quote