aboutsummaryrefslogtreecommitdiff
path: root/ip.rphp
diff options
context:
space:
mode:
Diffstat (limited to 'ip.rphp')
-rw-r--r--ip.rphp26
1 files changed, 26 insertions, 0 deletions
diff --git a/ip.rphp b/ip.rphp
new file mode 100644
index 0000000..94b63fb
--- /dev/null
+++ b/ip.rphp
@@ -0,0 +1,26 @@
+<h1>Il tuo IP</h1>
+<p>
+<?php
+// Function to get the client IP address
+function get_client_ip() {
+ $ipaddress = '';
+ if (isset($_SERVER['HTTP_CLIENT_IP']))
+ $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+ else if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
+ $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+ else if(isset($_SERVER['HTTP_X_FORWARDED']))
+ $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+ else if(isset($_SERVER['HTTP_FORWARDED_FOR']))
+ $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+ else if(isset($_SERVER['HTTP_FORWARDED']))
+ $ipaddress = $_SERVER['HTTP_FORWARDED'];
+ else if(isset($_SERVER['REMOTE_ADDR']))
+ $ipaddress = $_SERVER['REMOTE_ADDR'];
+ else
+ $ipaddress = 'UNKNOWN';
+ return $ipaddress;
+}
+
+echo get_client_ip();
+?>
+</p> \ No newline at end of file