REKLAM ALANI

Php İle Ülke Bulma

avatar CodixoN
Aktif Üye
255
#1
Yorumu Paylaş

Merhaba,
bu iş için kullandığımız fonksiyon;
 
PHP Kod:
<?
function get_country () {
    $Ip_Address = $_SERVER[‘REMOTE_ADDR’];

    $Geo_Plugin_XML = simplexml_load_file("http://www.geoplugin.net/xml.gp?ip=" . $Ip_Address);

    $Country = $Geo_Plugin_XML->geoplugin_countryName;

    return $Country;
}
?>

Kullanımı : 
 
PHP Kod:
<?

echo $country = get_country(); 

?>
deneme
Aktif Üye

Konuda Ara

0 Yorum


Konuyu Okuyanlar: