Feedback on: irt.org FAQ Knowledge Base Q106
Worth:
Worth reading
Length:
Just right
Technical:
Just right
Comments:
Javascript CAN do counters...
http://junior.apk.net/~jbarta/megacounter/
;-)
Worth:
Very worth reading
Length:
Just right
Technical:
Just right
Comments:
Using CGI and Javascript, it's possible to have a external page counter without having to use an image. (Think of the possibilities of using HTML markup tags!)
#!/usr/bin/perl
print "Content-Type: text/javascript\n\n";
# read and update $counter here
print "document.write($counter)\n";
print "// (c) Blah blah blah";
<script src="blah.cgi"></script>