Hi,

Does anybody know where can I find a website providing currency converter service and makes it available for php user to integrate it with their web application?

Thank you.

    Don't know of the application, but I do host a CSV file that gets its rates from xe.com. You can find it here:
    xrate.txt

    It has this format:

    USD_1.00000_1.00000000,EUR_0.816716_1.22441583,GBP_0.561667_1.78041437,JPY_114.723_0.00871664,CAD_1.15308_0.86724251,AUD_1.32840_0.75278530,CHF_1.26622_0.78975217,RUB_28.2550_0.03539196,CNY_8.06280_0.12402639,ZAR_5.98800_0.16700066
    --[ Last Updated: 01.23.2006 @ 12:34 am ]--

    The info format is this:
    Country Code1 USD ExchangeInverse of previous

    So, for example:
    USD => EUR

    $50 => 40.8358 [50*0.816716]

    EUR => USD
    40.84 => 50.01 [40.84*1.22441583]

    XE.com hosts their own CSV and XML feeds if you want it, but you have to pay.... my text file updates every 6 hours ( 4 times/day)

      Thank you very much.

      I did it using Xe too.

        Write a Reply...