Quote:
Originally Posted by chrishirst
And did you miss reading this:
On their website??
|
Thanks for your help, and I am sorry if you misunderstood me. I was just trying to show one example website, on which the live currency conversion is happening. There are many such websites, which give the current currency value.
I just wanted to know, how to collect or get the value of a currency in a variable. For example: Suppose I create following variables:
$INR is a php variable which is stroes the value in Indian Rupees.
$USD is a php variable which stores the value in US Dollars.
( 1 INR = 0.0214083 USD) This is the current conversion value that is taken from any xyz website.
So
$INR = 0.0214083 * $USD;
So I just want to know, that from any website (which display the currency conversion rates) how can I get a live current value in a php variable, so that I can use it on my website for displaying the product prices in both INR and USD.
Please point me to a right direction, or let me know any such website from where I can collect the live data in a php variable; and I also want to know how to do that.
|