If you want to change the traditional feedburner  reader statistic image use the below program in your widgets which will fetch the readers feedburner .Everyone has one: Digg, Feedburner, Pownce, Flickr, Google Maps, etc. FeedBurner provides a sweet “Awareness API” that allows you to pull statistics from your FeedBurner account. Here’s how you do it using PHP cURL.
//open connection Â
$ch = curl_init(); Â
//set the url, number of POST vars, POST data Â
curl_setopt($ch,CURLOPT_URL,‘http://api.feedburner.com/awareness/1.0/GetFeedData?id=#######’);Â Â
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);Â Â Â Â
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);Â Â
    //execute post Â
    $content = curl_exec($ch); Â
    $subscribers = get_match(‘/circulation=”(.*)”/isU’,$content); Â
echo ‘Subscribers:  ’.$subscribers; Â
     //close connection Â
curl_close($ch);Â Â
/* helper: does the regex */ Â
function get_match($regex,$content) Â
{Â Â
         preg_match($regex,$content,$matches); Â
    return $matches[1]; Â
}Â Â
It’s that easy. What makes this even better is that I hate FeedBurner’s “badge” and I can manipulate the result of the above code any way I want. Â To learn more about FeedBurner’s Awareness API and the information you can pull about your feed view the below url http://code.google.com/apis/feedburner/awareness_api.html

