Get Facebook follower count
<?php $json = file_get_contents('http://api.facebook.com/method/fql.query?format=json&query=select+fan_count+from+page+where+page_id%3D475488679182886'); $decode = json_decode($json); echo $decode[0]; // Fan Count ?>