In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Zaka rias) wrote:
> if some users come into my site, that script will
> catch the user ip and write it to iplog.txt file
why not simply look in the access log? it should already
have that information.
--
brian d foy <[EMAIL PROTECTED]> - Perl
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 wri