> -----Original Message-----
> From: Chris W. Parker [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, August 17, 2006 1:26 PM
> To: Daevid Vincent; php-general@lists.php.net
> Subject: RE: [PHP] I need an array of state abbrev to names...
> 
> Daevid Vincent <mailto:[EMAIL PROTECTED]>
>     on Thursday, August 17, 2006 12:58 PM said:
> 
> > B/c I'm too busy (and lazy) to hand type it all in, wondering if
> > someone has an array of state abbreviations to names like so...
> > 
> > $states = array(
> > ...
> >     'NY' => 'New York',
> >     'WA' => 'Washington',
> > ...
> > );
> 
> HERE LAZY!
> 
>     $GLOBALS['usps_states_list'] = array(
> 0 => array('name'=>'Alaska','code'=>'AK','contiguous'=>true),
...
> Please send me a check $250. Thanks!
>
> Chris.

Thanks, for the help, here is the list formatted as I needed it for anyone
else that may need this in the future.

$states = array(
'AL' => 'Alabama',
'AK' => 'Alaska',
'AS' => 'American Samoa',
'AZ' => 'Arizona',
'AR' => 'Arkansas',
'CA' => 'California',
'CO' => 'Colorado',
'CT' => 'Connecticut',
'DE' => 'Delaware',
'DC' => 'District Of Columbia',
'FM' => 'Federated States Of Micronesia',
'FL' => 'Florida',
'GA' => 'Georgia',
'GU' => 'Guam',
'HI' => 'Hawaii',
'ID' => 'Idaho',
'IL' => 'Illinois',
'IN' => 'Indiana',
'IA' => 'Iowa',
'KS' => 'Kansas',
'KY' => 'Kentucky',
'LA' => 'Louisiana',
'ME' => 'Maine',
'MH' => 'Marshall Islands',
'MD' => 'Maryland',
'MA' => 'Massachusetts',
'MI' => 'Michigan',
'MN' => 'Minnesota',
'MS' => 'Mississippi',
'MO' => 'Missouri',
'MT' => 'Montana',
'NE' => 'Nebraska',
'NV' => 'Nevada',
'NH' => 'New Hampshire',
'NJ' => 'New Jersey',
'NM' => 'New Mexico',
'NY' => 'New York',
'NC' => 'North Carolina',
'ND' => 'North Dakota',
'MP' => 'Northern Mariana Islands',
'OH' => 'Ohio',
'OK' => 'Oklahoma',
'OR' => 'Oregon',
'PW' => 'Palau',
'PA' => 'Pennsylvania',
'PR' => 'Puerto Rico',
'RI' => 'Rhode Island',
'SC' => 'South Carolina',
'SD' => 'South Dakota',
'TN' => 'Tennessee',
'TX' => 'Texas',
'UT' => 'Utah',
'VT' => 'Vermont',
'VI' => 'Virgin Islands',
'VA' => 'Virginia',
'WA' => 'Washington',
'WV' => 'West Virginia',
'WI' => 'Wisconsin',
'WY' => 'Wyoming'
);

DÆVID 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to