If you are interested in ALL of his weekly backlink packets from this year, go to...
http://www.blackhatworld.com/blackhat-seo/member-downloads/175182-get-high-page-ranking-angela-style-backlink-packs-screen-shots-show-how-create-them.html
Hope this helps.
That was a nice share, but I think all the sites are coming from the same class C IP address, so they aren't as valuable as having 12 links from 12 high PR sites on 12 different class C IP's. Much like Ning, all the sites are pulling your profile page from the same IP.
That was a nice share, but I think all the sites are coming from the same class C IP address, so they aren't as valuable as having 12 links from 12 high PR sites on 12 different class C IP's. Much like Ning, all the sites are pulling your profile page from the same IP.
<?php
if( !isset($_GET['username']) || empty($_GET['username']) ) {
die(':(');
}
$username = $_GET['username'];
$urls = array(
"http://austinist.com/profile/$username",
"http://bostonist.com/profile/$username",
"http://chicagoist.com/profile/$username",
"http://dcist.com/profile/$username",
"http://gothamist.com/profile/$username",
"http://houstonist.com/profile/$username",
"http://laist.com/profile/$username",
"http://phillyist.com/profile/$username",
"http://seattlest.com/profile/$username",
"http://sfist.com/profile/$username",
"http://shanghaiist.com/profile/$username",
"http://torontoist.com/profile/$username",
"http://londonist.com/profile/$username"
);
?>
<html>
<head>
<title><?php echo $username; ?>'s Profiles</title>
</head>
<body>
<p>
<?php
foreach( $urls as $url ) {
preg_match( "/(\w+\.com)/", $url, $matches );
$urn = $matches[0];
echo <<<EOS
<a href="$url">$username's profile on $urn</a><br />
EOS;
}
?>
</p>
</body>
</html>