You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789 |
- <?php
-
- $client_ip = '';
- if (isset($_SERVER['X_HTTP_FORWARDED_FOR'])) {
- $client_ip = $_SERVER['X_HTTP_FORWARDED_FOR'];
- } else if (isset($_SERVER['REMOTE_ADDR'])) {
- $client_ip = $_SERVER['REMOTE_ADDR'];
- }
- echo $client_ip;
|