aboutsummaryrefslogtreecommitdiffstats
path: root/en/downloads/debug/index.php
blob: c9d5f1d30b4a979330d27b8c3910761110399651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php

$ips = array();

if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])
    && $str = $_SERVER['HTTP_X_FORWARDED_FOR'])
{
    $arr = explode(', ', $str);
    $ips['ip'] = $arr[0];
    $ips['gw'] = $_SERVER['REMOTE_ADDR'];
}
else
    $ips['ip'] = $_SERVER['REMOTE_ADDR'];

$s = '';
foreach ($ips as $label => $ip) {
    $s .= sprintf('<li>%s is in %s, %s</li>',
        @geoip_country_code_by_name($ip),
        @geoip_continent_code_by_name($ip));
}

echo <<<S
<html><body>
<h1>Testing your IP, country, continent.</h1>
<ul>$s</ul>
<hr>
</body></html>
S;