Hi,
Here is a simple PHP code, using which you can get the live currency.
API Provider - ( http://finance.yahoo.com/ )
In this example i am getting the value of USD to INR.
<?php
$from = 'USD';
$to = 'INR';
$url = 'http://finance.yahoo.com/d/quotes.csv?e=.csv&f=sl1d1t1&s='. $from . $to .'=X';
$filehandler = @fopen($url, 'r');
if ($filehandler) {
$data = fgets($filehandler, 4096);
fclose($filehandler);
}
$InfoData = explode(',',$data);
$convertedValue= $InfoData[1];
echo $convertedValue;
?>
Here is a simple PHP code, using which you can get the live currency.
API Provider - ( http://finance.yahoo.com/ )
In this example i am getting the value of USD to INR.
<?php
$from = 'USD';
$to = 'INR';
$url = 'http://finance.yahoo.com/d/quotes.csv?e=.csv&f=sl1d1t1&s='. $from . $to .'=X';
$filehandler = @fopen($url, 'r');
if ($filehandler) {
$data = fgets($filehandler, 4096);
fclose($filehandler);
}
$InfoData = explode(',',$data);
$convertedValue= $InfoData[1];
echo $convertedValue;
?>
Comments
Post a Comment