Hi there, i’m trying to create a series of dropdown menus to respond like this
–Pick a Category
-Acrylic
-Gelcoat
-Options
Upon selecting one of the above dropdown items i would like a new dropbox menu to appear:
–Select Fixture
-Bathtub
-Shower
-Special Needs
This is the way that i tried to do it , but i think it’s looking for an action button to make this work…
[code]
Select Category
Acrylic
Gelcoat
System Connects
Options
<? if ($_POST[category] == "acrylic") {
echo "<select name=\"acrylic_prod\">";
echo "<option value=\"NULL\">Select Fixture</option>";
echo "<option value=\"ac_bw\">Bath & Whirlpool</option>";
echo "<option value=\"ac_bs\">Bath/Showers</option>";
echo "<option value=\"ac_shwr\">Showers</option>";
echo "<option value=\"ac_recept\">Receptors</option>";
echo "<option value=\"ac_sn\">Special Needs</option>";
echo "</select>";
}?>[/code]