Anyone any script that does something like http://www.iwebtool.com/backlink_checker?domain=http://ourhappymoney.com What is the algorithm behind it? I only know linkurhappymoney.com for Google. Thanks.
<?php $domain = "http://urhappymoney.com"; $scrape = file_get_contents("http://www.iwebtool.com/backlink_checker?domain=".urlencode($domain)); preg_match('~<font size="2">Total Backlinks: ([0-9]*)</font>~', $scrape, $a); echo $a[1]; ?> PHP: