Debt Consolidation - Kamala - Debt Consolidation - Debt Consolidation - Debt Consolidation

PDA

View Full Version : Counting Script


dtm32236
Oct 22nd 2008, 7:42 am
Hey guys,

I've been searching Google for this for wayyy too long now, and I can't find anything (probably searching the wrong terms).

I'd like to add a counter on my site that simply reads a number from a text file (or any file - it can even be embedded in the script itself).

I'm looking for something like this (right under the header links, the "total donations" thing):
http://www.kintera.org/FAF/home/defa...?ievent=268675

Every search comes up with a Website Hit Counter (not what I'm looking for).

I don't care if it's written in JavaScript, PHP or CGI. It doesn't really matter. I'd imagine that it's a pretty simple script, but I'm too dumb to write it myself.

Does anyone know where I can find something like this? Thanks a lot for any help!

dtm32236
Oct 22nd 2008, 8:08 am
sorry - here's (http://www.kintera.org/FAF/home/default.asp?ievent=268675) the correct link (i hope)

MMJ
Oct 22nd 2008, 11:00 am
<?php
echo file_get_contents('counter.txt');
?>

dtm32236
Oct 22nd 2008, 11:40 am
Thanks a lot, MMJ. I was really looking for the way the thing tics, or scrolls, like it does on that page. But I figured it out.

Thanks for the help!