Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Benjamin Young http://www.bensfriends.com/theideaman/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

USA states list as a PHP array

An array list for use with PHP functions that create an HTML Select List or other structure.

   1  
   2  $state_list = array('AL'=>"Alabama",  
   3  			'AK'=>"Alaska",  
   4  			'AZ'=>"Arizona",  
   5  			'AR'=>"Arkansas",  
   6  			'CA'=>"California",  
   7  			'CO'=>"Colorado",  
   8  			'CT'=>"Connecticut",  
   9  			'DE'=>"Delaware",  
  10  			'DC'=>"District Of Columbia",  
  11  			'FL'=>"Florida",  
  12  			'GA'=>"Georgia",  
  13  			'HI'=>"Hawaii",  
  14  			'ID'=>"Idaho",  
  15  			'IL'=>"Illinois",  
  16  			'IN'=>"Indiana",  
  17  			'IA'=>"Iowa",  
  18  			'KS'=>"Kansas",  
  19  			'KY'=>"Kentucky",  
  20  			'LA'=>"Louisiana",  
  21  			'ME'=>"Maine",  
  22  			'MD'=>"Maryland",  
  23  			'MA'=>"Massachusetts",  
  24  			'MI'=>"Michigan",  
  25  			'MN'=>"Minnesota",  
  26  			'MS'=>"Mississippi",  
  27  			'MO'=>"Missouri",  
  28  			'MT'=>"Montana",
  29  			'NE'=>"Nebraska",
  30  			'NV'=>"Nevada",
  31  			'NH'=>"New Hampshire",
  32  			'NJ'=>"New Jersey",
  33  			'NM'=>"New Mexico",
  34  			'NY'=>"New York",
  35  			'NC'=>"North Carolina",
  36  			'ND'=>"North Dakota",
  37  			'OH'=>"Ohio",  
  38  			'OK'=>"Oklahoma",  
  39  			'OR'=>"Oregon",  
  40  			'PA'=>"Pennsylvania",  
  41  			'RI'=>"Rhode Island",  
  42  			'SC'=>"South Carolina",  
  43  			'SD'=>"South Dakota",
  44  			'TN'=>"Tennessee",  
  45  			'TX'=>"Texas",  
  46  			'UT'=>"Utah",  
  47  			'VT'=>"Vermont",  
  48  			'VA'=>"Virginia",  
  49  			'WA'=>"Washington",  
  50  			'WV'=>"West Virginia",  
  51  			'WI'=>"Wisconsin",  
  52  			'WY'=>"Wyoming");
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS