Possible Duplicate:
Programmatically access currency exchange rates
Is there any api which provide exact converted value of currency? I have used google and yahoo api but they are not giving required result for VND(Vietnamese dong) to US dollars.
Possible Duplicate:
Programmatically access currency exchange rates
Is there any api which provide exact converted value of currency? I have used google and yahoo api but they are not giving required result for VND(Vietnamese dong) to US dollars.
How's this ?
<?php
$amount = urlencode("1");
$from_Currency = urlencode("VND");
$to_Currency = urlencode("USD");
$url = "hl=en&q=$amount$from_Currency%3D%3F$to_Currency";
$rawdata = file_get_contents("http://google.com/ig/calculator?".$url);
$data = explode('"', $rawdata);
$data = explode(' ', $data['3']);
$var = $data['0'];
echo $var;
?>