Skip to content

Instantly share code, notes, and snippets.

@ctrl-freak
Created October 13, 2011 03:12
Show Gist options
  • Save ctrl-freak/1283259 to your computer and use it in GitHub Desktop.
Save ctrl-freak/1283259 to your computer and use it in GitHub Desktop.
Print Australian States (Abbreviations as Keys)
<label for="state">State</label>
<select name="state" id="state" class="validate[required]">
<? $state = array('','QLD' => 'Queensland', 'NSW' => 'New South Wales', 'VIC' => 'Victoria', 'ACT' => 'Australian Capital Territory', 'SA' => 'South Australia', 'NT' => 'Northern Territory', 'TAS' => 'Tasmania', 'WA' => 'Western Australia');?>
<? foreach($state as $k => $s): ?>
<option value="<?=$k?>"<? if ($form['state']==$s): ?> selected="selected"<? endif; ?>><?=$s?></option>
<? endforeach; ?>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment