Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ISO currency list

I am developing a web app and I need to show all the currencies in the dropdown list.I am sure many people have done this before. I was wondering whats the best way to achieve this? Is there a jquery plugin that will give me a list of available currencies? Do I need to get the list from somewhere and store data in mysql table, if so, is there such reference table available ?

Tech Stack

Sprng MVC 3.0 Hibernate

Thanks

like image 325
user325643 Avatar asked Sep 16 '11 07:09

user325643


Video Answer


1 Answers

The ISO web site links to the Web site of the ISO 4217 Maintenance agency. The latter has the list of currencies in XLS and XML formats, along with names, codes etc. You could use that to populate your reference data.

Now, there are 281 codes. Whether sticking them all into a drop-down box would result in usable UI remains to be seen.

like image 110
NPE Avatar answered Oct 13 '22 01:10

NPE