23.12.2014, 16:24
All the webpage does is echo the client's IP. How-ever, I will include the page I used. As far as I know, my site hasn't gone down since I first got it.
Here;
And @Turn, at first I thought you were just new and didn't understand anything but know I see that your just being rude, and unhelpful. Let me get some of your recent posts:
If your going to talk shit about my script, atleast point out it's faults; what makes it shitty. I really hope that you get some manners, and decide to come back here with some respect for yourself. Your talking like you know everything, and are better than everyone else - I really don't appreciate your attitude.
Here;
Code:
<?php
function getClientIP() {
if (isset($_SERVER)) {
if (isset($_SERVER["HTTP_X_FORWARDED_FOR"]))
return $_SERVER["HTTP_X_FORWARDED_FOR"];
if (isset($_SERVER["HTTP_CLIENT_IP"]))
return $_SERVER["HTTP_CLIENT_IP"];
return $_SERVER["REMOTE_ADDR"];
}
if (getenv('HTTP_X_FORWARDED_FOR'))
return getenv('HTTP_X_FORWARDED_FOR');
if (getenv('HTTP_CLIENT_IP'))
return getenv('HTTP_CLIENT_IP');
return getenv('REMOTE_ADDR');
}
echo(getClientIp());
?>
Quote:
|
When are gonna realize that your server is shitty and so is your videos?
Post them on your forum, clearly nobody wants to see them here. |


