Thursday 1 March 2012

Display-Feedburner-Subscriber-Count-in-text

21:33 Posted by Unknown No comments
How To Display Feedburner Subscriber Count In Text



I believe you’ve seen websites and blogs that uses the text-based Feedburner subscriber count instead of the chicklet. I hope you are not getting the idea the these guys update their feed count manually. Instead, it can be done easily with scripts, and the reason why you want to do is – it gives you total flexibility in terms of design, styling and display.

Step 1

Copy paste the following code into your template, replace feedburner-id with your Feedbuner username. This script will grab you the feed count in numbers.
view plaincopy to clipboardprint?



//get cool feedburner count 
$whaturl="http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburner-id"; 
 
//Initialize the Curl session 
$ch = curl_init(); 
 
//Set curl to return the data instead of printing it to the browser. 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
 
//Set the URL 
curl_setopt($ch, CURLOPT_URL, $whaturl); 
 
//Execute the fetch 
$data = curl_exec($ch); 
 
//Close the connection 
curl_close($ch); 
$xml = new SimpleXMLElement($data); 
$fb = $xml->feed->entry['circulation']; 
//end get cool feedburner count 



Step 2

Paste this anywhere you want and it’ll display a Feedburner subscriber count in text.
view plaincopy to clipboardprint?

echo $fb; 

To style it nicely with your website or blog’s theme, add <p> or <div> and tweak the CSS accordingly.

Enjoy...
Don't forget to like and comment...:)

0 comments:

Post a Comment

Thanks for giving your valueable response