in reply to Re: please help to exclude my own IP address.
in thread please help to exclude my own IP address.

Sorry that should be
if($ENV{REMOTE_ADDR} ne '10.10.0.1') { your code }

Replies are listed 'Best First'.
Re^3: please help to exclude my own IP address.
by nimdokk (Vicar) on May 02, 2005 at 18:25 UTC
    You could also flip the logic and say something like:

    exit if ($ENV{REMOTE_ADDR} =~ '10.10.0.1');
Re^3: please help to exclude my own IP address.
by amalgama (Initiate) on May 02, 2005 at 18:57 UTC
    where exactly should goes this line?