How To Display Feedburner Subscriber Count In Plain Text

text feedcount

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.

  1. //get cool feedburner 
    count
  2. $whaturl=“http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburner-id”;
  3. //Initialize the Curl session
  4. $ch = curl_init();
  5. //Set curl to return the data instead of printing it to the browser.
  6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  7. //Set the URL
  8. curl_setopt($ch, CURLOPT_URL, $whaturl);
  9. //Execute the fetch
  10. $data = curl_exec($ch);
  11. //Close 
    the connection
  12. curl_close($ch);
  13. $xml = new SimpleXMLElement($data);
  14. $fb = $xml->feed->entry['circulation'];
  15. //end get cool feedburner 
    count

Step 2

Paste this anywhere you want and it’ll display a Feedburner

subscriber

count
in text.

  1. echo $fb;

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

Disclaimer:

The following requires a basic understanding of where to place php code in your template and works on servers with PHP 5. Also, whenever working with files ALWAYS back them up before modifying them.
How To Get That Feedburner Count As Text Only

Overview

Make a call to the Feedburner API requesting the feedcount for a given burned feed.


This entry was posted in Artikel Inggeris and tagged , . Bookmark the permalink.
Beauty Marks Sequins Lipstick Shaped PEN – buy it now @ Amazon.com
Fun & Functional BEAUTY MARKS Lipstick shaped pen - looks like lipstick ...
Follow or no-follow?? Hey, thats increase my traffic..
Mel of Attitude, the Ultimate Power has a fun site for posting what you are grat...
Convert Your Files Online
Now You can convert your file via online services. If your video is saved in a d...
10 Steps that blogger have to avoid
1. Don't load your web site with a lot of high tech clutter. Your visitors may ...
Mylot.com - Increase your revenue by submit a review
why you should join myLot We've heard reports of many myLot users who spend mos...
It’s Now to turn your PC into Cash Machine part 2
Gomez Peer: Get Paid to Do Nothing Online! GomezPeer is around for a couple of ...





Leave a Reply

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>