if(getenv('REMOTE_ADDR')==$my_IP)
        $LetMeIn = 1;
else
        unset($LetMeIn);

Cheers,
Maxim Maletsky



-----Original Message-----
From: Alexander Wagner [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 15, 2001 8:31 AM
To: PHP Mailing List
Subject: Re: [PHP] Restrict access per IP Address


Karl J. Stubsjoen wrote:
> Okay, last one for the day!  How do you query the clients IP address?
>  We have a site in development, and I want to restrict access to
> people coming in from certain IP addresses.
> Really, all I need to do is query the IP address, I can code the rest
> of it.

$remote_ip = getenv('REMOTE_ADDR');
should work.
There are other ways, but this one should be the safest.

regards
Wagner

-- 
Three may keep a secret, if two of them are dead.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to