Skip to content

Instantly share code, notes, and snippets.

@beyazitkolemen
Created September 18, 2014 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beyazitkolemen/fdfd6e1c6a66e2af4216 to your computer and use it in GitHub Desktop.
Save beyazitkolemen/fdfd6e1c6a66e2af4216 to your computer and use it in GitHub Desktop.
Ülke Yakalama
<?php
$ipAddr = $_SERVER['REMOTE_ADDR'];
$geopluginURL = 'http://www.geoplugin.net/php.gp?ip=' . $ipAddr;
$addrDetailsArr = unserialize(file_get_contents($geopluginURL));
$country = $addrDetailsArr['geoplugin_countryCode'];
if ($country == "US")
{
?>
Amerikadan selamlar
<?php
} else
{
?>
Merhaba..
<?php
echo $country; ?>
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment