-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcountry_codes.inc.php
More file actions
executable file
·140 lines (138 loc) · 2.91 KB
/
country_codes.inc.php
File metadata and controls
executable file
·140 lines (138 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
$country_codes = array(
"AF" => "Afghanistan",
"3A" => "Africa",
"AL" => "Albania",
"AO" => "Angola",
"AG" => "Antigua and Barbuda",
"AR" => "Argentina",
"AM" => "Armenia",
"AZ" => "Azerbaijan",
"BD" => "Bangladesh",
"BB" => "Barbados",
"BY" => "Belarus",
"BZ" => "Belize",
"BJ" => "Benin",
"BT" => "Bhutan",
"BO" => "Bolivia",
"BA" => "Bosnia and Herzegovina",
"BW" => "Botswana",
"BR" => "Brazil",
"BG" => "Bulgaria",
"BF" => "Burkina Faso",
"BI" => "Burundi",
"KH" => "Cambodia",
"CM" => "Cameroon",
"CV" => "Cape Verde",
"6R" => "Caribbean",
"3T" => "Central Africa",
"6C" => "Central America",
"7C" => "Central Asia",
"TD" => "Chad",
"CL" => "Chile",
"CN" => "China",
"CO" => "Colombia",
"KM" => "Comoros",
"ZR" => "Congo Democratic Republic of",
"CG" => "Congo Republic of",
"CI" => "Cote d'Ivoire",
"HR" => "Croatia",
"DJ" => "Djibouti",
"DO" => "Dominican Republic",
"EC" => "Ecuador",
"EG" => "Egypt Arab Republic of",
"SV" => "El Salvador",
"ET" => "Ethiopia",
"ESC" => "Europe and Central Asia",
"FJ" => "Fiji",
"GM" => "Gambia",
"GE" => "Georgia",
"GH" => "Ghana",
"GD" => "Grenada",
"GT" => "Guatemala",
"GN" => "Guinea",
"GW" => "Guinea-Bissau",
"HT" => "Haiti",
"HN" => "Honduras",
"IN" => "India",
"ID" => "Indonesia",
"IQ" => "Iraq",
"JM" => "Jamaica",
"JO" => "Jordan",
"KZ" => "Kazakhstan",
"KE" => "Kenya",
"KI" => "Kiribati",
"XK" => "Kosovo",
"KG" => "Kyrgyz Republic",
"LA" => "Lao People's Democratic Republic",
"LCN" => "Latin America Caribbean",
"LB" => "Lebanon",
"LS" => "Lesotho",
"LR" => "Liberia",
"MK" => "Macedonia former Yugoslav Republic",
"MG" => "Madagascar",
"MW" => "Malawi",
"MV" => "Maldives",
"ML" => "Mali",
"MR" => "Mauritania",
"MU" => "Mauritius",
"MX" => "Mexico",
"MEA" => "Middle East and North Africa",
"MD" => "Moldova",
"MN" => "Mongolia",
"ME" => "Montenegro",
"MA" => "Morocco",
"MZ" => "Mozambique",
"NP" => "Nepal",
"NI" => "Nicaragua",
"NE" => "Niger",
"NG" => "Nigeria",
"OECS" => "OECS Countries",
"PK" => "Pakistan",
"PA" => "Panama",
"PG" => "Papua New Guinea",
"PY" => "Paraguay",
"PE" => "Peru",
"PH" => "Philippines",
"PL" => "Poland",
"RO" => "Romania",
"RU" => "Russian Federation",
"RW" => "Rwanda",
"WS" => "Samoa",
"ST" => "Sao Tome and Principe",
"SN" => "Senegal",
"YF" => "Serbia",
"SC" => "Seychelles",
"SL" => "Sierra Leone",
"SB" => "Solomon Islands",
"ZA" => "South Africa",
"SAS" => "South Asia",
"SEE" => "South Eastern Europe",
"SS" => "South Sudan",
"LK" => "Sri Lanka",
"LC" => "St. Lucia",
"VC" => "St. Vincent and the Grenadines",
"SD" => "Sudan",
"SZ" => "Swaziland",
"TJ" => "Tajikistan",
"TZ" => "Tanzania",
"TP" => "Timor-Leste",
"TG" => "Togo",
"TO" => "Tonga",
"TN" => "Tunisia",
"TR" => "Turkey",
"TM" => "Turkmenistan",
"TV" => "Tuvalu",
"UG" => "Uganda",
"UA" => "Ukraine",
"UY" => "Uruguay",
"UZ" => "Uzbekistan",
"VU" => "Vanuatu",
"VN" => "Vietnam",
"GZ" => "West Bank and Gaza",
"1W" => "World",
"RY" => "Yemen Republic of",
"ZM" => "Zambia",
"ZW" => "Zimbabwe",
);
?>