Re: Getting and storing user IP address

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Mar 23, 2015 at 12:18:35PM -0400, michael bredthauer wrote:
> I have been having some trouble with creating a way to store an IP address of a site visitor for tracking users site visits. 
> So far I have heard using:
> 
> $ip = $_SERVER['REMOTE_ADDR']?:($_SERVER['HTTP_X_FORWARDED_FOR']?:$_SERVER['HTTP_CLIENT_IP']);
> 
> Would you consider this the best way? 
> 

What, specifically, is the issue you're having? 

I remember (years ago) dealing with a spambot that didn't return an IP
in $_SERVER('REMOTE_ADDR'], and my solution was to block clients that
didn't have that value set. But if all you're doing is counting visits,
you may be better off just parsing your webserver access logs.

--Sean

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux