How to populate drop-down boxes?

C

ChrisJ

I know how to insert text boxes and drop-down boxes etc., but how do you get
the lists to populate a drop-down box? I would like one with major us Cities,
a drop-down box for State, a drop-down box for Month, one for Day and one-for
Year.
Thanks.
 
A

Andrew Murray

you can do it with the frontpage database results wizard, but you'd still need to
enter the data into a database such as MS Access.
 
A

Andrew Murray

insert each item one at a time

<select name=country>
<option>Australia</option>
<option> Austria</option>
.....
<option>New Zealand</option>
</select>
etc etc
 
C

ChrisJ

Exactly, where do I put this code?

Andrew Murray said:
insert each item one at a time

<select name=country>
<option>Australia</option>
<option> Austria</option>
.....
<option>New Zealand</option>
</select>
etc etc
 
Top