Are you linking to banned sites?
Utilizing the linkfromdomain: command in MSN, this tool finds the top 100 outbound links on your site and determines whether or not those sites are banned. If they are, it gives you the link to MSN where you can find exactly what pages on your site link to the banned domain!
Enter your URL to run the check now. Any banned sites that turn up will have a link next to them.
// IP Information Lookup
// v1.0 by Russ Jones & Virante, Inc.
include "Snoopy.class.php";
function getSingleMatch($start,$end,$content) {
$exp = explode($start,$content);
$ex2 = explode($end,$exp[1]);
return $ex2[0];
}
function getMultiMatch($start,$end,$content){
$links = array();
$exp = explode($start,$content);
for($i=1;$i
";
$site = str_replace("www.","",$_POST['domain']);
$snoopy = new Snoopy;
$snoopy->fetch("http://search.msn.com/results.aspx?q=linkfromdomain%3A$site&FORM=MSNH");
$match1 = getSingleMatch('','',$snoopy->results);
$match = getSingleMatch("of ","results",$match1);
$match = str_replace(',','',$match);
$pages = $match/10;
if($pages>10) {
$pages=10;
}
$totalMatches = array();
for($i=0;$i<$pages;$i++) {
$first = ($i*10)+1;
$url = "http://search.msn.com/results.aspx?q=linkfromdomain%3A$site&FORM=MSNH&first=$first";
$snoopy = new Snoopy;
$snoopy->fetch($url);
$matches = getMultiMatch('";
foreach($totalDomains as $dom) {
$dom = str_replace("www.","",$dom);
$url = "http://www.google.com/search?hl=en&q=site%3A$dom&btnG=Google+Search";
$snoopy = new Snoopy;
$snoopy->fetch($url);
if(stristr($snoopy->results,"did not match any documents")) {
$color = '#ff0000';
$extra = "Pages Linking";
}
else{
$color = '#33ff00';
$extra = '';
}
echo "| $dom $extra |
\n";
}
echo "
";
echo "
";
}
else {
?>
}
?>
<< Check out more Free Tools
File:banned-sites.php