PHP‘s HTTP_X_FORWARDED_FOR and REMOTE_ADDR server variables store the IP Addresses of a visitor’s connection and any proxy server that their connection was forwarded through.
To use these details in your code, write a script similar to this:
< ?php $addressForwarded = $_SERVER['HTTP_X_FORWARDED_FOR']; $addressRemote = $_SERVER['REMOTE_ADDR']; echo "Connection forwarded for: {$addressForwarded} " . "and originated from {$addressRemote}."; ? >


And if you are being attacked from highly anonymous proxies then u should:
Hey Dash
Thanks for the feedback, much appreciated!
brinkka2011 says: At this time it seems like Expression Engine is the preferred blogging platform out there right now. (from what Ive read) Is that what youre using on your blog?