<html>
<head>
<title>Subscriber counter with Addicted to Feedburner PHP class and Feedburner Awareness API</title>
<style type="text/css">
.text { font-family : Verdana, Arial, Helvetica, sans-serif; font-size : 13px; color : #000000; }
a.text { color: #0000aa; text-decoration: none; }
a.text:hover { color: #0000aa; text-decoration: underline; }
.circulation_today { font-family : Verdana, Arial, Helvetica, sans-serif; font-size : 26px; color : #000000; font-weight: bold; }
a.circulation_today { color: #000000; text-decoration: none; }
a.circulation_today:hover { color: #000000; text-decoration: underline; }
.circulation_subscribers { font-family : Verdana, Arial, Helvetica, sans-serif; font-size : 14px; color : #5c5c5c; }
a.circulation_subscribers { color: #000000; text-decoration: none; }
a.circulation_subscribers:hover { color: #000000; text-decoration: underline; }
.circulation_change { font-family : Verdana, Arial, Helvetica, sans-serif; font-size : 30px; color : #5c5c5c; }
a.circulation_change { color: #5c5c5c; text-decoration: none; }
a.circulation_change:hover { color: #5c5c5c; text-decoration: underline; }
.circulation_new { font-family : Verdana, Arial, Helvetica, sans-serif; font-size : 14px; color : #5c5c5c; font-weight: bold; }
a.circulation_new { color: #5c5c5c; text-decoration: none; }
a.circulation_new:hover { color: #5c5c5c; text-decoration: underline; }
table.circulation_change_rounded td { -moz-border-radius: 20px 20px 20px 20px; }
</style>
<script type="text/javascript" language="JavaScript">
<!--
var cX = 0; var cY = 0;
function UpdateCursorPosition(e){ cX = e.pageX; cY = e.pageY;}
function UpdateCursorPositionDocAll(e){ cX = event.clientX; cY = event.clientY;}
if(document.all) { document.onmousemove = UpdateCursorPositionDocAll; }
else { document.onmousemove = UpdateCursorPosition; }
function AssignPosition(d) {
d.style.left = (cX) + "px";
d.style.top = (cY+10) + "px";
}
function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
if(d.length < 1) { return; }
var dd = document.getElementById(d);
AssignPosition(dd);
dd.style.display = "block";
}
function ReverseContentDisplay(d) {
if(d.length < 1) { return; }
var dd = document.getElementById(d);
AssignPosition(dd);
if(dd.style.display == "none") { dd.style.display = "block"; }
else { dd.style.display = "none"; }
}
//-->
</script>
</head>
<body bgcolor="#ffffff">
<span class="text">Back to '<a href="http://www.OpenCrypt.com/blog.php?a=24" class="text">Subscriber counter with Addicted to Feedburner PHP class and Feedburner Awareness API</a>'<br>
</span><p>
<?PHP
require "feedburner_subscribers.php";
print feedburner_stats("OpenCrypt", 1);
?>
<span class="text"><p>The above content was generated with the PHP code (and a little bit of CSS and JavaScript):<br>
<pre>require "feedburner_subscribers.php";
print feedburner_stats("OpenCrypt", 1);</pre>
</span><p>
</body>
</html>