i got a script in my web like this :
------------------------
$a=$ENV{REMOTE_ADDR}'
open(infi, ">>iplog.txt">;
print infi "$a \n";
close infi;
...
another process
----------------------------
that script i put in main.html
if some users come into my site, that script will
catch the user ip and write it to iplog.txt file, and
then im using that iplog.txt for hit counter purpose.

but that's not accurate, cuz everytime user click
main.html the hit counter growing bigger and bigger.
and then i heard about cookies, and i heard that with
cookies, we (as a web server/server) will recognize
guest (user/visitor), is that right ? 



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to