How To Set Automatic Country Wise Currency on Domain for Sale Page



<?php

$ip = $_SERVER['REMOTE_ADDR'];
$xml = simplexml_load_file("http://www.geoplugin.net/xml.gp?ip=".$ip);

$c = $xml->geoplugin_countryName ;

switch ($c)
{
case "India":
$cc = "Your Domain Price in RS";
break;
default:
$cc = "Your Domain Price in $";
}

?>


The post How To Set Automatic Country Wise Currency on Domain for Sale Page appeared first on BMTechTips.

Comments