Jump to content

Simple pulldown canada


AV1611

Recommended Posts

I keep an include page with an array of all states/provinces and US territories...

 

then when ever I need such a list in my site (which is quite freqently) I can build it on the fly:

 

<select>

<? include('list_states.php');

foreach($states_array as $_two_digit_postal_code => $state_name){ ?>

<option value="<?=$_two_digit_postal_code ?>"><?=$state_name ?></option>

<? } ?>

</select>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.