php multiple drop down sub menu

  • Thread starter Thread starter bishop2001
  • Start date Start date
B

bishop2001

hi i am trying to create a drop down menu where for example the 1st menu has 2 items and the 2nd menu has 4 items. So when you pick the 1st drop down you get first 2 choices from menu 2 and when you select the 2nd choice in menu1 you get the other 2 choices from menu 2.

so drop down New York would have Queens , Brooklyn etc...

<form name="region" onClick="this.form.submit()" default="ny" method="POST">
<select name="dropdown">
<option value="ny">New York</option>
<option value="to">Toronto</option>
<option value="ln">London</option>
<option value="hk">Hong Kong</option>
</select>
<noscript><input type="submit" value="Submit"></noscript>
</form>


Continue reading...
 
Back
Top