Countries and states
$miCountries is asociative array in the global scope, where for each element, key is the three letter code, and value is the country full name.
<?php
$miCountries = array(
'AFG' => 'Afghanistan',
'ALB' => 'Albania',
'DZA' => 'Algeria',
'ASM' => 'American Samoa',
// ...
);
?>
$miUSStates is asociative array (with the states in the US) in the global scope, where for each element, key is the two letter code, and value is the state full name.
<?php
$miUSStates = array(
'AL' => 'Alabama',
'AK' => 'Alaska',
'AS' => 'American Samoa',
'AZ' => 'Arizona',
// ...
);
?>
<?php
$miCanadianProvinces = array(
'AB' => 'Alberta',
'BC' => 'British Columbia',
'MB' => 'Manitoba',
'NB' => 'New Brunswick',
// ...
);
?>