• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

counter

does your host allow SSI?

Code:
#!/usr/bin/perl

open (COUNTER_READ, "counter.txt");
$counter = <COUNTER_READ> + 1;
close(COUNTER_READ);
print " $counter times.<br>\n";
open (COUNTER_WRITE, ">counter.txt");
print COUNTER_WRITE $counter;
close (COUNTER_WRITE);

Just specify the font and everything, then call the perl file.
 
wouldn't it be better if that counter script of yours had file locking, so if 2 people visit at the same time it wouldn't mess up? I have a counter I wrote that's almost identical to that one, and had to put file locking in to keep it from skipping a count.
 
Back
Top