Getting ip address with PHP

Carlos

Member
Registered
Joined
Sep 30, 2017
Messages
38
Points
0
Hello,

I'm trying to get my ip with:
PHP:
$_SERVER['REMOTE_ADDR'];
The thing is that i'm getting a different address with php than from websites like myip.com
I've read that there is no 100% reliable way to get an ip address, but what would be my best option using only php?
Thanks. :)
 

cheapservers

New member
Registered
Joined
Dec 27, 2017
Messages
1
Points
3
Hello,
You can try this:

PHP:
	if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
		$ip = $_SERVER['HTTP_CLIENT_IP'];
	} 
	elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
		$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
	} 
	else {
		$ip = $_SERVER['REMOTE_ADDR'];
	}
	echo 'ip is: '.$ip;
 
Latest Threads
Replies
1
Views
1,234
Replies
3
Views
991
Replies
1
Views
590
Replies
2
Views
1,195
Replies
1
Views
799
Recommended Threads
Replies
7
Views
6,858
Replies
4
Views
3,773
Replies
0
Views
2,746

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top