P
Peter Lauren
I can make a drop down select list thus.
<select>
<option value="lion">Lion</option>
<option value="tiger">Tiger</option>
<option value="cheetah">Cheetah</option>
<option value="leopard">Leopard</option>
</select>
However it is fixed at 4 specific items. How would I modify the
select block that that I could handle and number of items, with any
number of different names such as from a database.
Many thanks in advance for any help,
Peter.
<select>
<option value="lion">Lion</option>
<option value="tiger">Tiger</option>
<option value="cheetah">Cheetah</option>
<option value="leopard">Leopard</option>
</select>
However it is fixed at 4 specific items. How would I modify the
select block that that I could handle and number of items, with any
number of different names such as from a database.
Many thanks in advance for any help,
Peter.