first commit

This commit is contained in:
Erreur32 2020-04-08 22:14:51 +02:00
parent 15a82ba9a9
commit f476e87e5e
1 changed files with 7 additions and 7 deletions

View File

@ -464,13 +464,13 @@ $host = gethostbyaddr($ipaddress);
}
?>
<?php
$geoip_country_code = getenv(GEOIP_COUNTRY_CODE);
$geoip_country_name = getenv(GEOIP_COUNTRY_NAME);
$geoip_region = getenv(GEOIP_REGION);
$geoip_city = getenv(GEOIP_CITY);
$geoip_postal_code = getenv(GEOIP_POSTAL_CODE);
$geoip_latitude = getenv(GEOIP_LATITUDE);
$geoip_longitude = getenv(GEOIP_LONGITUDE);
$geoip_country_code = getenv('GEOIP_COUNTRY_CODE');
$geoip_country_name = getenv('GEOIP_COUNTRY_NAME');
$geoip_region = getenv('GEOIP_REGION');
$geoip_city = getenv('GEOIP_CITY');
$geoip_postal_code = getenv('GEOIP_POSTAL_CODE');
$geoip_latitude = getenv('GEOIP_LATITUDE');
$geoip_longitude = getenv('GEOIP_LONGITUDE');
?>
</head>