in reply to Re: Counter of Visits in a HTML page
in thread Counter of Visits in a HTML page

> i.e. javascript

A client-side language wouldn't cut it for something like this. You need something that can maintain state across users and sessions.

()-()
 \"/
  `                                                     
  • Comment on Re: Re: Counter of Visits in a HTML page

Replies are listed 'Best First'.
Re: Re: Re: Counter of Visits in a HTML page
by sch (Pilgrim) on Sep 19, 2002 at 18:09 UTC

    OK, bad example there - it would as you say have to be something on server-side.

    And of course, you'd have to be careful of race conditions - i.e. two people viewing the page at the same instant could get the same count unless you were fairly careful - although in this case I guess that's probably not a big worry but it shows how careful you have to be with this kind of stuff