I have made an eCommerce website using php/mysql. The root currency I have used in US Dollars. Now I want to add a currency converter facility on the site so that people can check the price of their own region & their own currency & pay it. So I would like to know which is the best method for integrating currency converter tool on eCommerce website?
Share
This entirely depends on your eCommerce platform. Is it one you’ve created yourself? Based on a framework? What?
Anyway, the easiest way to do this on the majority of eCommerce systems I’ve worked on is to just convert any instance of price into the new currency. The general process is:
but as I said, it’s heavily dependent on what eCommerce platform you are using.