Gehe zu deutscher Webseite

ViaThinkSoft CodeLib

This article is in:
CodeLibProgramming aidsPHP

<?php

function getCountryFromIP($ip '') {
    if (empty(
$ip)) {
        
$ip $_SERVER['REMOTE_ADDR'];
    }
    
$out file_get_contents("http://whois.viathinksoft.de/country/$ip");
    if (
$out == '??') return false;
    return 
$out;
}

echo 
"Your country: ".getCountryFromIP();

?>

Dieses Script nutzt die IP-2-Country Software von ViaThinkSoft. Weitere Informationen: http://whois.viathinksoft.de/.
Daniel Marschall
ViaThinkSoft Co-Founder