PHP Array Of Canadian States
Published by philipnorton42 on Thu, 04/23/2009 - 13:42Use the following array to print out a list of Canadian states, also know as provinces.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | $canadian_states = array( "BC"=>"British Columbia", "ON"=>"Ontario", "NL"=>"Newfoundland and Labrador", "NS"=>"Nova Scotia", "PE"=>"Prince Edward Island", "NB"=>"New Brunswick", "QC"=>"Quebec", "MB"=>"Manitoba", "SK"=>"Saskatchewan", "AB"=>"Alberta", "NT"=>"Northwest Territories", "NU"=>"Nunavut" "YT"=>"Yukon Territory"); |
Here is the same array, but with the French versions of the states.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | $canadian_states = array( "AB"=>"Alberta" "BC"=>"Colombie-Britannique" "MB"=>"Manitoba" "NB"=>"Nouveau-Brunswick" "NL"=>"Terre-Neuve-et-Labrador" "NS"=>"Nouvelle-Écosse" "NT"=>"Territoires du Nord-Ouest" "NU"=>"Nunavut" "ON"=>"Ontario" "PE"=>"Île-du-Prince-Édouard" "QC"=>"Québec" "SK"=>"Saskatchewan" "YT"=>"Yukon"); |
Category:
Comments
Some corrections for your
Eric (not verified) - Tue, 05/05/2009 - 16:21Thanks for the info and the
philipnorton42 - Tue, 05/05/2009 - 16:25Add new comment