feed->entry['circulation'];
echo "
According to the Feedburner API, HTNet has ". $subs . " subscribers. 
";
// Papajoneh counter
$xml = simplexml_load_file("http://api.feedburner.com/awareness/1.0/GetFeedData?uri=papajoneh") or die ("Unable to load XML file!");
$subs = $xml->feed->entry['circulation'];
echo "According to the Feedburner API, Papajoneh has ". $subs . " subscribers. 
";
//Problogger counter
$xml = simplexml_load_file("http://api.feedburner.com/awareness/1.0/GetFeedData?uri=ProbloggerHelpingBloggersEarnMoney") or die ("Unable to load XML file!");
$subs = $xml->feed->entry['circulation'];
echo "According to the Feedburner API, Problogger has ". $subs . " subscribers. 
";
// Sabahan.com counter
$xml = simplexml_load_file("http://api.feedburner.com/awareness/1.0/GetFeedData?uri=Sabahancom") or die ("Unable to load XML file!");
$subs = $xml->feed->entry['circulation'];
echo "According to the Feedburner API, Sabahan.com has ". $subs . " subscribers. 
";
?>