tags:

views:

32

answers:

5

I need to show a dropdown menu with the international calling codes for each country. Where can I find such a drop down????

A: 

The list of country calling codes is here.

You can for instance store them in array that you loop, in each iteration printing a <option> tag.

Artefacto
+1  A: 

You would need to create it yourself, you can find info on http://www.countrycallingcodes.com/

I gave you the answer but it may not be the place to ask this question as StackOveflow is used for programming question.

Dominique
A: 

The list is at Wikipedia, making it into a list of <option value="+1">USA</option> is up to you.

Piskvor
A: 

Why not make a database table then you can loop them out with <option name=""></option> and in the future or now you can make some more specific queries such as LIKE AND WHERE which would make it more user friendly.

Oliver Bayes-Shelton