Thread: Internet Counters?

  1. #1
    Unregistered
    Guest

    Internet Counters?

    where can i find a free internet counter?

  2. #2
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    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);

  3. #3
    . Driveway's Avatar
    Join Date
    May 2002
    Posts
    469
    You could write your own
    or:
    go here

    if you can't get access to the cgi-bin of your web page provider, you can't install a counter.
    Not with my link I'd write my own though
    Last edited by Driveway; 08-30-2002 at 04:28 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. 2 internet connections
    By Erakis in forum Windows Programming
    Replies: 0
    Last Post: 07-01-2009, 07:14 AM
  2. Internet Problems
    By SirCrono6 in forum Tech Board
    Replies: 3
    Last Post: 04-26-2004, 09:47 PM
  3. XP Internet problems
    By Hunter2 in forum Tech Board
    Replies: 9
    Last Post: 09-18-2003, 08:56 PM
  4. Internet Publishing Laws
    By novacain in forum A Brief History of Cprogramming.com
    Replies: 2
    Last Post: 12-09-2002, 02:19 PM