This is a list of all countries from ISO 3166.

The format is "safe_key|value". The safe_key is the ISO 3166-2 code of the respective state and the value is the name of the respective state.

AF|Afghanistan
AX|Åland Islands
AL|Albania
DZ|Algeria
AS|American Samoa
AD|Andorra
AO|Angola
AI|Anguilla
AQ|Antarctica
AG|Antigua and Barbuda
AR|Argentina
AM|Armenia
AW|Aruba
AU|Australia
AT|Austria
AZ|Azerbaijan
BS|Bahamas (the)
BH|Bahrain
BD|Bangladesh
BB|Barbados
BY|Belarus
BE|Belgium
BZ|Belize
BJ|Benin
BM|Bermuda
BT|Bhutan
BO|Bolivia (Plurinational State of)
BQ|Bonaire, Sint Eustatius and Saba
BA|Bosnia and Herzegovina
BW|Botswana
BV|Bouvet Island
BR|Brazil
IO|British Indian Ocean Territory (the)
BN|Brunei Darussalam
BG|Bulgaria
BF|Burkina Faso
BI|Burundi
CV|Cabo Verde
KH|Cambodia
CM|Cameroon
CA|Canada
KY|Cayman Islands (the)
CF|Central African Republic (the)
TD|Chad
CL|Chile
CN|China
CX|Christmas Island
CC|Cocos (Keeling) Islands (the)
CO|Colombia
KM|Comoros (the)
CD|Congo (the Democratic Republic of the)
CG|Congo (the)
CK|Cook Islands (the)
CR|Costa Rica
CI|Côte d'Ivoire
HR|Croatia
CU|Cuba
CW|Curaçao
CY|Cyprus
CZ|Czech Republic (the)
DK|Denmark
DJ|Djibouti
DM|Dominica
DO|Dominican Republic (the)
EC|Ecuador
EG|Egypt
SV|El Salvador
GQ|Equatorial Guinea
ER|Eritrea
EE|Estonia
ET|Ethiopia
FK|Falkland Islands (the) [Malvinas]
FO|Faroe Islands (the)
FJ|Fiji
FI|Finland
FR|France
GF|French Guiana
PF|French Polynesia
TF|French Southern Territories (the)
GA|Gabon
GM|Gambia (the)
GE|Georgia
DE|Germany
GH|Ghana
GI|Gibraltar
GR|Greece
GL|Greenland
GD|Grenada
GP|Guadeloupe
GU|Guam
GT|Guatemala
GG|Guernsey
GN|Guinea
GW|Guinea-Bissau
GY|Guyana
HT|Haiti
HM|Heard Island and McDonald Islands
VA|Holy See (the)
HN|Honduras
HK|Hong Kong
HU|Hungary
IS|Iceland
IN|India
ID|Indonesia
IR|Iran (Islamic Republic of)
IQ|Iraq
IE|Ireland
IM|Isle of Man
IL|Israel
IT|Italy
JM|Jamaica
JP|Japan
JE|Jersey
JO|Jordan
KZ|Kazakhstan
KE|Kenya
KI|Kiribati
KP|Korea (the Democratic People's Republic of)
KR|Korea (the Republic of)
KW|Kuwait
KG|Kyrgyzstan
LA|Lao People's Democratic Republic (the)
LV|Latvia
LB|Lebanon
LS|Lesotho
LR|Liberia
LY|Libya
LI|Liechtenstein
LT|Lithuania
LU|Luxembourg
MO|Macao
MK|Macedonia (the former Yugoslav Republic of)
MG|Madagascar
MW|Malawi
MY|Malaysia
MV|Maldives
ML|Mali
MT|Malta
MH|Marshall Islands (the)
MQ|Martinique
MR|Mauritania
MU|Mauritius
YT|Mayotte
MX|Mexico
FM|Micronesia (Federated States of)
MD|Moldova (the Republic of)
MC|Monaco
MN|Mongolia
ME|Montenegro
MS|Montserrat
MA|Morocco
MZ|Mozambique
MM|Myanmar
NA|Namibia
NR|Nauru
NP|Nepal
NL|Netherlands (the)
NC|New Caledonia
NZ|New Zealand
NI|Nicaragua
NE|Niger (the)
NG|Nigeria
NU|Niue
NF|Norfolk Island
MP|Northern Mariana Islands (the)
NO|Norway
OM|Oman
PK|Pakistan
PW|Palau
PS|Palestine, State of
PA|Panama
PG|Papua New Guinea
PY|Paraguay
PE|Peru
PH|Philippines (the)
PN|Pitcairn
PL|Poland
PT|Portugal
PR|Puerto Rico
QA|Qatar
RE|Réunion
RO|Romania
RU|Russian Federation (the)
RW|Rwanda
BL|Saint Barthélemy
SH|Saint Helena, Ascension and Tristan da Cunha
KN|Saint Kitts and Nevis
LC|Saint Lucia
MF|Saint Martin (French part)
PM|Saint Pierre and Miquelon
VC|Saint Vincent and the Grenadines
WS|Samoa
SM|San Marino
ST|Sao Tome and Principe
SA|Saudi Arabia
SN|Senegal
RS|Serbia
SC|Seychelles
SL|Sierra Leone
SG|Singapore
SX|Sint Maarten (Dutch part)
SK|Slovakia
SI|Slovenia
SB|Solomon Islands
SO|Somalia
ZA|South Africa
GS|South Georgia and the South Sandwich Islands
SS|South Sudan
ES|Spain
LK|Sri Lanka
SD|Sudan (the)
SR|Suriname
SJ|Svalbard and Jan Mayen
SZ|Swaziland
SE|Sweden
CH|Switzerland
SY|Syrian Arab Republic
TW|Taiwan (Province of China)
TJ|Tajikistan
TZ|Tanzania, United Republic of
TH|Thailand
TL|Timor-Leste
TG|Togo
TK|Tokelau
TO|Tonga
TT|Trinidad and Tobago
TN|Tunisia
TR|Turkey
TM|Turkmenistan
TC|Turks and Caicos Islands (the)
TV|Tuvalu
UG|Uganda
UA|Ukraine
AE|United Arab Emirates (the)
GB|United Kingdom of Great Britain and Northern Ireland (the)
UM|United States Minor Outlying Islands (the)
US|United States of America (the)
UY|Uruguay
UZ|Uzbekistan
VU|Vanuatu
VE|Venezuela (Bolivarian Republic of)
VN|Viet Nam
VG|Virgin Islands (British)
VI|Virgin Islands (U.S.)
WF|Wallis and Futuna
EH|Western Sahara*
YE|Yemen
ZM|Zambia
ZW|Zimbabwe

If you install Countries API in Drupal 6, Webform will automatically use it as a predefined list. Drupal 7 also includes a built-in list of countries that makes Countries API unnecessary for most purposes.

See also the non-piped version for the profile module

Using Zend Framework for a language country list

Using Zend Framework you can get a nice list of countries in your language ready to copy/paste for your webform with the following code:

  set_include_path('/your/path/to/ZendFramework/library/');
  require 'Zend/Locale.php';
  $locale = new Zend_Locale();
  $lang = 'en';
  $countries = ($locale->getTranslationList('Territory', $lang, 2));
  asort($countries, SORT_LOCALE_STRING);
  foreach($countries as $code => $name) {
    print $code.'|'.$name."<br />\n";
  }

You can change the $lang variable to almost any code you want, for example 'ja' for Japanese, 'es' for Spanish and so on. Remember to change the include path to your Zend Framework installation.

Comments

itapplication’s picture

Afghanistan|Afghanistan 
Albania|Albania 
Algeria|Algeria 
American Samoa|American Samoa 
Andorra|Andorra 
Angola|Angola 
Anguilla|Anguilla 
Antarctica|Antarctica 
Antigua and Barbuda|Antigua and Barbuda 
Argentina|Argentina 
Armenia|Armenia 
Aruba|Aruba 
Australia|Australia 
Austria|Austria 
Azerbaijan|Azerbaijan 
Bahamas|Bahamas 
Bahrain|Bahrain 
Bangladesh|Bangladesh 
Barbados|Barbados 
Belarus|Belarus 
Belgium|Belgium 
Belize|Belize 
Benin|Benin 
Bermuda|Bermuda 
Bhutan|Bhutan 
Bolivia|Bolivia 
Bosnia and Herzegovina|Bosnia and Herzegovina 
Botswana|Botswana 
Bouvet Island|Bouvet Island 
Brazil|Brazil 
British Indian Ocean Territory|British Indian Ocean Territory 
Brunei Darussalam|Brunei Darussalam 
Bulgaria|Bulgaria 
Burkina Faso|Burkina Faso 
Burundi|Burundi 
Cambodia|Cambodia 
Cameroon|Cameroon 
Canada|Canada 
Cape Verde|Cape Verde 
Cayman Islands|Cayman Islands 
Central African Republic|Central African Republic 
Chad|Chad 
Chile|Chile 
China|China 
Christmas Island|Christmas Island 
Cocos (Keeling) Islands|Cocos (Keeling) Islands 
Colombia|Colombia 
Comoros|Comoros 
Congo|Congo 
Congo, The Democratic Republic of The|Congo, The Democratic Republic of The 
Cook Islands|Cook Islands 
Costa Rica|Costa Rica 
Cote D’ivoire|Cote D’ivoire 
Croatia|Croatia 
Cuba|Cuba 
Cyprus|Cyprus 
Czech Republic|Czech Republic 
Denmark|Denmark 
Djibouti|Djibouti 
Dominica|Dominica 
Dominican Republic|Dominican Republic 
Ecuador|Ecuador 
Egypt|Egypt 
El Salvador|El Salvador 
Equatorial Guinea|Equatorial Guinea 
Eritrea|Eritrea 
Estonia|Estonia 
Ethiopia|Ethiopia 
Falkland Islands (Malvinas)|Falkland Islands (Malvinas) 
Faroe Islands|Faroe Islands 
Fiji|Fiji 
Finland|Finland 
France|France 
French Guiana|French Guiana 
French Polynesia|French Polynesia 
French Southern Territories|French Southern Territories 
Gabon|Gabon 
Gambia|Gambia 
Georgia|Georgia 
Germany|Germany 
Ghana|Ghana 
Gibraltar|Gibraltar 
Greece|Greece 
Greenland|Greenland 
Grenada|Grenada 
Guadeloupe|Guadeloupe 
Guam|Guam 
Guatemala|Guatemala 
Guinea|Guinea 
Guinea-bissau|Guinea-bissau 
Guyana|Guyana 
Haiti|Haiti 
Heard Island and Mcdonald Islands|Heard Island and Mcdonald Islands 
Holy See (Vatican City State)|Holy See (Vatican City State) 
Honduras|Honduras 
Hong Kong|Hong Kong 
Hungary|Hungary 
Iceland|Iceland 
India|India 
Indonesia|Indonesia 
Iran, Islamic Republic of|Iran, Islamic Republic of 
Iraq|Iraq 
Ireland|Ireland 
Israel|Israel 
Italy|Italy 
Jamaica|Jamaica 
Japan|Japan 
Jordan|Jordan 
Kazakhstan|Kazakhstan 
Kenya|Kenya 
Kiribati|Kiribati 
Korea, Democratic People’s Republic of|Korea, Democratic People’s Republic of 
Korea, Republic of|Korea, Republic of 
Kuwait|Kuwait 
Kyrgyzstan|Kyrgyzstan 
Lao People’s Democratic Republic|Lao People’s Democratic Republic 
Latvia|Latvia 
Lebanon|Lebanon 
Lesotho|Lesotho 
Liberia|Liberia 
Libyan Arab Jamahiriya|Libyan Arab Jamahiriya 
Liechtenstein|Liechtenstein 
Lithuania|Lithuania 
Luxembourg|Luxembourg 
Macao|Macao 
Macedonia, The Former Yugoslav Republic of|Macedonia, The Former Yugoslav Republic of 
Madagascar|Madagascar 
Malawi|Malawi 
Malaysia|Malaysia 
Maldives|Maldives 
Mali|Mali 
Malta|Malta 
Marshall Islands|Marshall Islands 
Martinique|Martinique 
Mauritania|Mauritania 
Mauritius|Mauritius 
Mayotte|Mayotte 
Mexico|Mexico 
Micronesia, Federated States of|Micronesia, Federated States of 
Moldova, Republic of|Moldova, Republic of 
Monaco|Monaco 
Mongolia|Mongolia 
Montserrat|Montserrat 
Morocco|Morocco 
Mozambique|Mozambique 
Myanmar|Myanmar 
Namibia|Namibia 
Nauru|Nauru 
Nepal|Nepal 
Netherlands|Netherlands 
Netherlands Antilles|Netherlands Antilles 
New Caledonia|New Caledonia 
New Zealand|New Zealand 
Nicaragua|Nicaragua 
Niger|Niger 
Nigeria|Nigeria 
Niue|Niue 
Norfolk Island|Norfolk Island 
Northern Mariana Islands|Northern Mariana Islands 
Norway|Norway 
Oman|Oman 
Pakistan|Pakistan 
Palau|Palau 
Palestinian Territory, Occupied|Palestinian Territory, Occupied 
Panama|Panama 
Papua New Guinea|Papua New Guinea 
Paraguay|Paraguay 
Peru|Peru 
Philippines|Philippines 
Pitcairn|Pitcairn 
Poland|Poland 
Portugal|Portugal 
Puerto Rico|Puerto Rico 
Qatar|Qatar 
Reunion|Reunion 
Romania|Romania 
Russian Federation|Russian Federation 
Rwanda|Rwanda 
Saint Helena|Saint Helena 
Saint Kitts and Nevis|Saint Kitts and Nevis 
Saint Lucia|Saint Lucia 
Saint Pierre and Miquelon|Saint Pierre and Miquelon 
Saint Vincent and The Grenadines|Saint Vincent and The Grenadines 
Samoa|Samoa 
San Marino|San Marino 
Sao Tome and Principe|Sao Tome and Principe 
Saudi Arabia|Saudi Arabia 
Senegal|Senegal 
Serbia and Montenegro|Serbia and Montenegro 
Seychelles|Seychelles 
Sierra Leone|Sierra Leone 
Singapore|Singapore 
Slovakia|Slovakia 
Slovenia|Slovenia 
Solomon Islands|Solomon Islands 
Somalia|Somalia 
South Africa|South Africa 
South Georgia and The South Sandwich Islands|South Georgia and The South Sandwich Islands 
Spain|Spain 
Sri Lanka|Sri Lanka 
Sudan|Sudan 
Suriname|Suriname 
Svalbard and Jan Mayen|Svalbard and Jan Mayen 
Swaziland|Swaziland 
Sweden|Sweden 
Switzerland|Switzerland 
Syrian Arab Republic|Syrian Arab Republic 
Taiwan|Taiwan 
Tajikistan|Tajikistan 
Tanzania, United Republic of|Tanzania, United Republic of
Thailand|Thailand 
Timor-leste|Timor-leste 
Togo|Togo 
Tokelau|Tokelau 
Tonga|Tonga 
Trinidad and Tobago|Trinidad and Tobago 
Tunisia|Tunisia 
Turkey|Turkey 
Turkmenistan|Turkmenistan 
Turks and Caicos Islands|Turks and Caicos Islands 
Tuvalu|Tuvalu 
Uganda|Uganda 
Ukraine|Ukraine 
United Arab Emirates|United Arab Emirates 
United Kingdom|United Kingdom 
United States|United States 
United States Minor Outlying Islands|United States Minor Outlying Islands 
Uruguay|Uruguay 
Uzbekistan|Uzbekistan 
Vanuatu|Vanuatu 
Venezuela|Venezuela 
Viet Nam|Viet Nam 
Virgin Islands, British|Virgin Islands, British 
Virgin Islands, U.S.|Virgin Islands, U.S. 
Wallis and Futuna|Wallis and Futuna 
Western Sahara|Western Sahara 
Yemen|Yemen 
Zambia|Zambia 
Zimbabwe|Zimbabwe

Drupal developer

Drupal Theme developer.

Shivcharan

TechNikh’s picture

If it helps, I have written a php script to parse the above list and apply to the list I have with name differences & conflicts

Below code will copy two letter codes from $donor array to $acceptor array;

$acceptor = array(
   "Morocco" => "",
    "Mozambique" => "",
    "Myanmar, {Burma}" => "",
    "Namibia" => "",
    "Nauru" => "",
    "Nepal" => "",
    "Netherlands" => "",
    "New Zealand" => "",
    "Nicaragua" => "",
    "Niger" => "",
    "Nigeria" => "",
    "Norway" => "",
    "Oman" => "",
    "Pakistan" => "",
    "Palau" => "",
    "Panama" => "",
    "Papua New Guinea" => "",
    "Paraguay" => "",
    "Peru" => "",
    "Philippines" => "",
    "Poland" => "",
    "Portugal" => "",
    "Qatar" => "",
    "Romania" => "",
    "Russian Federation" => "",
    "Rwanda" => "",
    "St Kitts & Nevis" => "",
    "St Lucia" => "",
    "Saint Vincent & the Grenadines" => "",
    "Samoa" => "",
    "San Marino" => "",
    "Sao Tome & Principe" => "",
    "Saudi Arabia" => "",
    "Senegal" => "",
    "Serbia" => "",
    "Seychelles" => "",
    "Sierra Leone" => "",
    "Singapore" => "",
    "Slovakia" => "",
    "Slovenia" => "",
    "Solomon Islands" => "",
    "Somalia" => "",
    "South Africa" => "",
    "South Sudan" => "",
    "Spain" => "",
    "Sri Lanka" => "",
    "Sudan" => "",
    "Suriname" => "",
    "Swaziland" => "",
    "Sweden" => "",
    "Switzerland" => "",
    "Syria" => "",
    "Taiwan" => "",
    "Tajikistan" => "",
    "Tanzania" => "",
    "Thailand" => "",
    "Togo" => "",
    "Tonga" => "",
    "Trinidad & Tobago" => "",
    "Tunisia" => "",
    "Turkey" => "",
    "Turkmenistan" => "",
    "Tuvalu" => "",
    "Uganda" => "",
    "Ukraine" => "",
    "United Arab Emirates" => "",
    "Uruguay" => "",
    "Uzbekistan" => "",
    "Vanuatu" => "",
    "Vatican City" => "",
    "Venezuela" => "",
    "Vietnam" => "",
    "Yemen" => "",
    "Zambia" => "",
    "Zimbabwe" => "",
  );
$donor = array(
    "MT" => "Malta",
    "MH" => "Marshall Islands (the)",
    "MQ" => "Martinique",
    "MR" => "Mauritania",
    "MU" => "Mauritius",
    "YT" => "Mayotte",
    "MX" => "Mexico",
    "FM" => "Micronesia (Federated States of)",
    "MD" => "Moldova (the Republic of)",
    "MC" => "Monaco",
    "MN" => "Mongolia",
    "ME" => "Montenegro",
    "MS" => "Montserrat",
    "MA" => "Morocco",
    "MZ" => "Mozambique",
    "MM" => "Myanmar",
    "NA" => "Namibia",
    "NR" => "Nauru",
    "NP" => "Nepal",
    "NL" => "Netherlands (the)",
    "NC" => "New Caledonia",
    "NZ" => "New Zealand",
    "NI" => "Nicaragua",
    "NE" => "Niger (the)",
    "NG" => "Nigeria",
    "NU" => "Niue",
    "NF" => "Norfolk Island",
    "MP" => "Northern Mariana Islands (the)",
    "NO" => "Norway",
    "OM" => "Oman",
    "PK" => "Pakistan",
    "PW" => "Palau",
    "PS" => "Palestine, State of",
    "PA" => "Panama",
    "PG" => "Papua New Guinea",
    "PY" => "Paraguay",
    "PE" => "Peru",
    "PH" => "Philippines (the)",
    "PN" => "Pitcairn",
    "PL" => "Poland",
    "PT" => "Portugal",
    "PR" => "Puerto Rico",
    "QA" => "Qatar",
    "RE" => "Réunion",
    "RO" => "Romania",
    "RU" => "Russian Federation (the)",
    "RW" => "Rwanda",
    "BL" => "Saint Barthélemy",
    "SH" => "Saint Helena, Ascension and Tristan da Cunha",
    "KN" => "Saint Kitts and Nevis",
    "LC" => "Saint Lucia",
    "MF" => "Saint Martin (French part)",
    "PM" => "Saint Pierre and Miquelon",
    "VC" => "Saint Vincent and the Grenadines",
    "WS" => "Samoa",
    "SM" => "San Marino",
    "ST" => "Sao Tome and Principe",
    "SA" => "Saudi Arabia",
    "SN" => "Senegal",
    "RS" => "Serbia",
    "SC" => "Seychelles",
    "SL" => "Sierra Leone",
    "SG" => "Singapore",
    "SX" => "Sint Maarten (Dutch part)",
    "SK" => "Slovakia",
    "SI" => "Slovenia",
    "SB" => "Solomon Islands",
    "SO" => "Somalia",
    "ZA" => "South Africa",
    "GS" => "South Georgia and the South Sandwich Islands",
    "SS" => "South Sudan",
    "ES" => "Spain",
    "LK" => "Sri Lanka",
    "SD" => "Sudan (the)",
    "SR" => "Suriname",
    "SJ" => "Svalbard and Jan Mayen",
    "SZ" => "Swaziland",
    "SE" => "Sweden",
    "CH" => "Switzerland",
    "SY" => "Syrian Arab Republic",
    "TW" => "Taiwan (Province of China)",
    "TJ" => "Tajikistan",
    "TZ" => "Tanzania, United Republic of",
    "TH" => "Thailand",
    "TL" => "Timor-Leste",
    "TG" => "Togo",
    "TK" => "Tokelau",
    "TO" => "Tonga",
    "TT" => "Trinidad and Tobago",
    "TN" => "Tunisia",
    "TR" => "Turkey",
    "TM" => "Turkmenistan",
    "TC" => "Turks and Caicos Islands (the)",
    "TV" => "Tuvalu",
    "UG" => "Uganda",
    "UA" => "Ukraine",
    "AE" => "United Arab Emirates (the)",
    "GB" => "United Kingdom of Great Britain and Northern Ireland (the)",
    "UM" => "United States Minor Outlying Islands (the)",
    "US" => "United States of America (the)",
    "UY" => "Uruguay",
    "UZ" => "Uzbekistan",
    "VU" => "Vanuatu",
    "VE" => "Venezuela (Bolivarian Republic of)",
    "VN" => "Viet Nam",
    "VG" => "Virgin Islands (British)",
    "VI" => "Virgin Islands (U.S.)",
    "WF" => "Wallis and Futuna",
    "EH" => "Western Sahara*",
    "YE" => "Yemen",
    "ZM" => "Zambia",
    "ZW" => "Zimbabwe",
);
$filled_acceptor = array();
foreach($acceptor as $country_name => $unknown){
  $country_two_code  = array_search ($country_name, $donor);
  if(empty($country_two_code)){
    dsm("Unable to apply $country_name");
  }
  $filled_acceptor[$country_name] = $country_two_code;
}
print_r($filled_acceptor);

Cheers,
TechNikh

In 30 seconds set up Automated Visual testing of your website. Zero coding. https://drupal.org/project/drulenium
Ever dreamed of styling your view, We have a solution for you. https://drupal.org/project/views_stylizer

virajrajankar’s picture

$country = ["Afghanistan" => "Afghanistan", "Albania" => "Albania", "Algeria" => "Algeria",
      "American Samoa" => "American Samoa", "Andorra" => "Andorra", "Angola" => "Angola",
      "Anguilla" => "Anguilla", "Antigua and Barbuda" => "Antigua and Barbuda",
      "Argentina" => "Argentina", "Armenia" => "Armenia", "Aruba" => "Aruba", "Australia" => "Australia",
      "Austria" => "Austria", "Azerbaijan" => "Azerbaijan", "The Bahamas" => "The Bahamas",
      "Bahrain" => "Bahrain", "Bangladesh" => "Bangladesh", "Barbados" => "Barbados",
      "Belarus" => "Belarus", "Belgium" => "Belgium", "Belize" => "Belize", "Benin" => "Benin",
      "Bermuda" => "Bermuda", "Bhutan" => "Bhutan", "Bolivia" => "Bolivia",
      "Bosnia and Herzegovina" => "Bosnia and Herzegovina", "Botswana" => "Botswana",
      "Brazil" => "Brazil", "Brunei" => "Brunei", "Bulgaria" => "Bulgaria",
      "Burkina Faso" => "Burkina Faso", "Burundi" => "Burundi", "Cambodia" => "Cambodia",
      "Cameroon" => "Cameroon", "Canada" => "Canada", "Cape Verde" => "Cape Verde",
      "Cayman Islands" => "Cayman Islands", "Central African Republic" => "Central African Republic",
      "Chad" => "Chad", "Chile" => "Chile", "People's Republic of China" => "People's Republic of China",
      "Republic of China" => "Republic of China", "Christmas Island" => "Christmas Island",
      "Cocos(Keeling) Islands" => "Cocos(Keeling) Islands", "Colombia" => "Cocos(Keeling) Islands",
      "Comoros" => "Comoros", "Congo" => "Congo", "Cook Islands" => "Cook Islands",
      "Costa Rica" => "Costa Rica", "Cote d'Ivoire" => "Cote d'Ivoire", "Croatia" => "Croatia",
      "Cuba" => "Cuba", "Cyprus" => "Cyprus", "Czech Republic" => "Czech Republic",
      "Denmark" => "Denmark", "Djibouti" => "Djibouti", "Dominica" => "Dominica",
      "Dominican Republic" => "Dominican Republic", "Ecuador" => "Ecuador", "Egypt" => "Egypt",
      "El Salvador" => "El Salvador", "Equatorial Guinea" => "Equatorial Guinea",
      "Eritrea" => "Eritrea", "Estonia" => "Estonia", "Ethiopia" => "Ethiopia",
      "Falkland Islands" => "Falkland Islands", "Faroe Islands" => "Faroe Islands", "Fiji" => "Fiji",
      "Finland" => "Finland", "France" => "France", "French Polynesia" => "French Polynesia",
      "Gabon" => "Gabon", "The Gambia" => "The Gambia", "Georgia" => "Georgia", "Germany" => "Germany",
      "Ghana" => "Ghana", "Gibraltar" => "Gibraltar", "Greece" => "Greece", "Greenland" => "Greenland",
      "Grenada" => "Grenada", "Guadeloupe" => "Guadeloupe", "Guam" => "Guam", "Guatemala" => "Guatemala",
      "Guernsey" => "Guernsey", "Guinea" => "Guinea", "Guinea - Bissau" => "Guinea - Bissau",
      "Guyana" => "Guyana", "Haiti" => "Haiti", "Honduras" => "Honduras", "Hong Kong" => "Hong Kong",
      "Hungary" => "Hungary", "Iceland" => "Iceland", "India" => "India", "Indonesia" => "Indonesia",
      "Iran" => "Iran", "Iraq" => "Iraq", "Ireland" => "Ireland", "Israel" => "Israel", "Italy" => "Italy",
      "Jamaica" => "Jamaica", "Japan" => "Japan", "Jersey" => "Jersey", "Jordan" => "Jordan",
      "Kazakhstan" => "Kazakhstan", "Kenya" => "Kenya", "Kiribati" => "Kiribati",
      "North Korea" => "North Korea", "South Korea" => "South Korea", "Kosovo" => "Kosovo",
      "Kuwait" => "Kuwait", "Kyrgyzstan" => "Kyrgyzstan", "Laos" => "Laos", "Latvia" => "Latvia",
      "Lebanon" => "Lebanon", "Lesotho" => "Lesotho", "Liberia" => "Liberia", "Libya" => "Libya",
      "Liechtenstein" => "Liechtenstein", "Lithuania" => "Lithuania", "Luxembourg" => "Luxembourg",
      "Macau" => "Macau", "Macedonia" => "Macedonia", "Madagascar" => "Madagascar", "Malawi" => "Malawi",
      "Malaysia" => "Malaysia", "Maldives" => "Maldives", "Mali" => "Mali", "Malta" => "Malta",
      "Marshall Islands" => "Marshall Islands", "Martinique" => "Martinique", "Mauritania" => "Mauritania",
      "Mauritius" => "Mauritius", "Mayotte" => "Mayotte", "Mexico" => "Mexico", "Micronesia" => "Micronesia",
      "Moldova" => "Moldova", "Monaco" => "Monaco", "Mongolia" => "Mongolia",
      "Montenegro" => "Montenegro", "Montserrat" => "Montserrat", "Morocco" => "Morocco",
      "Mozambique" => "Mozambique", "Myanmar" => "Myanmar", "Nagorno - Karabakh" => "Nagorno - Karabakh",
      "Namibia" => "Namibia", "Nauru" => "Nauru", "Nepal" => "Nepal", "Netherlands" => "Netherlands",
      "Netherlands Antilles" => "Netherlands Antilles", "New Caledonia" => "New Caledonia",
      "New Zealand" => "New Zealand", "Nicaragua" => "Nicaragua", "Niger" => "Niger", "Nigeria" => "Nigeria",
      "Niue" => "Niue", "Norfolk Island" => "Norfolk Island",
      "Turkish Republic of Northern Cyprus" => "Turkish Republic of Northern Cyprus",
      "Northern Mariana" => "Northern Mariana", "Norway" => "Norway", "Oman" => "Oman",
      "Pakistan" => "Pakistan", "Palau" => "Palau", "Palestine" => "Palestine",
      "Panama" => "Panama", "Papua New Guinea" => "Papua New Guinea", "Paraguay" => "Paraguay",
      "Peru" => "Peru", "Philippines" => "Philippines", "Pitcairn Islands" => "Pitcairn Islands",
      "Poland" => "Poland", "Portugal" => "Portugal", "Puerto Rico" => "Puerto Rico", "Qatar" => "Qatar",
      "Romania" => "Romania", "Russia" => "Russia", "Rwanda" => "Rwanda",
      "Saint Barthelemy" => "Saint Barthelemy", "Saint Helena" => "Saint Helena",
      "Saint Kitts and Nevis" => "Saint Kitts and Nevis", "Saint Lucia" => "Saint Lucia",
      "Saint Martin" => "Saint Martin", "Saint Pierre and Miquelon" => "Saint Pierre and Miquelon",
      "Saint Vincent and the Grenadines" => "Saint Vincent and the Grenadines", "Samoa" => "Samoa",
      "San Marino" => "San Marino", "Sao Tome and Principe" => "Sao Tome and Principe",
      "Saudi Arabia" => "Saudi Arabia", "Senegal" => "Senegal", "Serbia" => "Serbia",
      "Seychelles" => "Seychelles", "Sierra Leone" => "Sierra Leone", "Singapore" => "Singapore",
      "Slovakia" => "Slovakia", "Slovenia" => "Slovenia", "Solomon Islands" => "Solomon Islands",
      "Somalia" => "Somalia", "Somaliand" => "Somaliand", "South Africa" => "South Africa",
      "South Ossetia" => "South Ossetia", "Spain" => "Spain", "Sri Lanka" => "Sri Lanka",
      "Sudan" => "Sudan", "Suriname" => "Suriname", "Svalbard" => "Svalbard",
      "Swaziland" => "Swaziland", "Sweden" => "Sweden", "Switzerland" => "Switzerland",
      "Syria" => "Syria", "Taiwan" => "Taiwan", "Tajikistan" => "Tajikistan",
      "Tanzania" => "Tanzania", "Thailand" => "Thailand", "Timor - Leste" => "Timor - Leste",
      "Togo" => "Togo", "Tokelau" => "Tokelau", "Tonga" => "Tonga", "Transnistria Pridnestrovie" => "Transnistria Pridnestrovie",
      "Trinidad and Tobago" => "Trinidad and Tobago", "Tristan da Cunha" => "Tristan da Cunha",
      "Tunisia" => "Tunisia", "Turkey" => "Turkey", "Turkmenistan" => "Turkmenistan",
      "Turks and Caicos Islands" => "Turks and Caicos Islands", "Tuvalu" => "Tuvalu",
      "Uganda" => "Uganda", "Ukraine" => "Ukraine", "United Arab Emirates" => "United Arab Emirates",
      "United Kingdom" => "United Kingdom", "United States" => "United States",
      "Uruguay" => "Uruguay", "Uzbekistan" => "Uzbekistan", "Vanuatu" => "Vanuatu",
      "Vatican City" => "Vatican City", "Venezuela" => "Venezuela", "Vietnam" => "Vietnam",
      "British Virgin Islands" => "British Virgin Islands", "Isle of Man" => "Isle of Man",
      "US Virgin Islands" => "US Virgin Islands", "Wallis and Futuna" => "Wallis and Futuna",
      "Western Sahara" => "Western Sahara", "Yemen" => "Yemen", "Zambia" => "Zambia",
      "Zimbabwe" => "Zimbabwe"];
omrmankar’s picture

213|Algeria (+213)
376|Andorra (+376)
244|Angola (+244)
1264|Anguilla (+1264)
1268|Antigua &amp; Barbuda (+1268)
54|Argentina (+54)
374|Armenia (+374)
297|Aruba (+297)
61|Australia (+61)
43|Austria (+43)
994|Azerbaijan (+994)
1242|Bahamas (+1242)
973|Bahrain (+973)
880|Bangladesh (+880)
1246|Barbados (+1246)
375|Belarus (+375)
32|Belgium (+32)
501|Belize (+501)
229|Benin (+229)
1441|Bermuda (+1441)
975|Bhutan (+975)
591|Bolivia (+591)
387|Bosnia Herzegovina (+387)
267|Botswana (+267)
55|Brazil (+55)
673|Brunei (+673)
359|Bulgaria (+359)
226|Burkina Faso (+226)
257|Burundi (+257)
855|Cambodia (+855)
237|Cameroon (+237)
1|Canada OR USA (+1)
238|Cape Verde Islands (+238)
1345|Cayman Islands (+1345)
236|Central African Republic (+236)
56|Chile (+56)
86|China (+86)
57|Colombia (+57)
269|Comoros (+269)
242|Congo (+242)
682|Cook Islands (+682)
506|Costa Rica (+506)
385|Croatia (+385)
53|Cuba (+53)
90392|Cyprus North (+90392)
357|Cyprus South (+357)
42|Czech Republic (+42)
45|Denmark (+45)
253|Djibouti (+253)
1809|Dominica & Dominican Republic (+1809)
593|Ecuador (+593)
20|Egypt (+20)
503|El Salvador (+503)
240|Equatorial Guinea (+240)
291|Eritrea (+291)
372|Estonia (+372)
251|Ethiopia (+251)
500|Falkland Islands (+500)
298|Faroe Islands (+298)
679|Fiji (+679)
358|Finland (+358)
33|France (+33)
594|French Guiana (+594)
689|French Polynesia (+689)
241|Gabon (+241)
220|Gambia (+220)
7880|Georgia (+7880)
49|Germany (+49)
233|Ghana (+233)
350|Gibraltar (+350)
30|Greece (+30)
299|Greenland (+299)
1473|Grenada (+1473)
590|Guadeloupe (+590)
671|Guam (+671)
502|Guatemala (+502)
224|Guinea (+224)
245|Guinea - Bissau (+245)
592|Guyana (+592)
509|Haiti (+509)
504|Honduras (+504)
852|Hong Kong (+852)
36|Hungary (+36)
354|Iceland (+354)
91|India (+91)
62|Indonesia (+62)
98|Iran (+98)
964|Iraq (+964)
353|Ireland (+353)
972|Israel (+972)
39|Italy (+39)
1876|Jamaica (+1876)
81|Japan (+81)
962|Jordan (+962)
7|Kazakhstan or Uzbekistan or Russia or Tajikstan (+7)
254|Kenya (+254)
686|Kiribati (+686)
850|Korea North (+850)
82|Korea South (+82)
965|Kuwait (+965)
996|Kyrgyzstan (+996)
856|Laos (+856)
371|Latvia (+371)
961|Lebanon (+961)
266|Lesotho (+266)
231|Liberia (+231)
218|Libya (+218)
417|Liechtenstein (+417)
370|Lithuania (+370)
352|Luxembourg (+352)
853|Macao (+853)
389|Macedonia (+389)
261|Madagascar (+261)
265|Malawi (+265)
60|Malaysia (+60)
960|Maldives (+960)
223|Mali (+223)
356|Malta (+356)
692|Marshall Islands (+692)
596|Martinique (+596)
222|Mauritania (+222)
52|Mexico (+52)
691|Micronesia (+691)
373|Moldova (+373)
377|Monaco (+377)
976|Mongolia (+976)
1664|Montserrat (+1664)
212|Morocco (+212)
258|Mozambique (+258)
95|Myanmar (+95)
264|Namibia (+264)
674|Nauru (+674)
977|Nepal (+977)
31|Netherlands (+31)
687|New Caledonia (+687)
64|New Zealand (+64)
505|Nicaragua (+505)
227|Niger (+227)
234|Nigeria (+234)
683|Niue (+683)
672|Norfolk Islands (+672)
670|Northern Marianas (+670)
47|Norway (+47)
968|Oman (+968)
680|Palau (+680)
507|Panama (+507)
675|Papua New Guinea (+675)
595|Paraguay (+595)
51|Peru (+51)
63|Philippines (+63)
48|Poland (+48)
351|Portugal (+351)
1787|Puerto Rico (+1787)
974|Qatar (+974)
262|Reunion (+262)
40|Romania (+40)
250|Rwanda (+250)
378|San Marino (+378)
239|Sao Tome &amp; Principe (+239)
966|Saudi Arabia (+966)
221|Senegal (+221)
381|Serbia (+381)
248|Seychelles (+248)
232|Sierra Leone (+232)
65|Singapore (+65)
421|Slovak Republic (+421)
386|Slovenia (+386)
677|Solomon Islands (+677)
252|Somalia (+252)
27|South Africa (+27)
34|Spain (+34)
94|Sri Lanka (+94)
290|St. Helena (+290)
1869|St. Kitts (+1869)
1758|St. Lucia (+1758)
249|Sudan (+249)
597|Suriname (+597)
268|Swaziland (+268)
46|Sweden (+46)
41|Switzerland (+41)
963|Syria (+963)
886|Taiwan (+886)
66|Thailand (+66)
228|Togo (+228)
676|Tonga (+676)
1868|Trinidad &amp; Tobago (+1868)
216|Tunisia (+216)
90|Turkey (+90)
993|Turkmenistan (+993)
1649|Turks &amp; Caicos Islands (+1649)
688|Tuvalu (+688)
256|Uganda (+256)
44|UK (+44) 
380|Ukraine (+380)
971|United Arab Emirates (+971)
598|Uruguay (+598)
678|Vanuatu (+678)
379|Vatican City (+379)
58|Venezuela (+58)
84|Vietnam (+84)
1284|Virgin Islands - British (+1284)
1340|Virgin Islands - US (+1340)
681|Wallis &amp; Futuna (+681)
969|Yemen (North)(+969)
967|Yemen (South)(+967)
260|Zambia (+260)
263|Zimbabwe (+263)

Best regards,

Omprakash Mankar
Senior Drupal Developer