Use the following array to print out a list of Australian states.
$australian_states = array(
"NSW" => "New South Wales",
"VIC" => "Victoria",
"QLD" => "Queensland",
"TAS" => "Tasmania",
"SA" => "South Australia",
"WA" => "Western Australia",
"NT" => "Northern Territory",
"ACT" => "Australian Capital Territory"
);
Comments
FYI, Australian Capital Territory is spelt incorrectly in your list. (Territory not Terrirory)
So it is. Corrected it now.
That mistake was only there for 7 years! :(