where can i find a free internet counter?
This is a discussion on Internet Counters? within the A Brief History of Cprogramming.com forums, part of the Community Boards category; where can i find a free internet counter?...
where can i find a free internet counter?
you could write your own cgi script. a counter is really easy.
if you can't get access to the cgi-bin of your web page provider, you can't install a counter.
here's some source code to ponder over:
Code:#!/usr/local/bin/perl open (FILE,"counter"); $count = <FILE>; close (FILE); $count++; open (FILE,">counter"); print FILE $count; close (FILE);
You could write your own
or:
go here
Not with my linkif you can't get access to the cgi-bin of your web page provider, you can't install a counter.I'd write my own though
Last edited by Driveway; 08-30-2002 at 04:28 PM.