Hello There,
I am trying to create a dropdown that selects mysql with php. For example I have two select dropdowns the first with types and second with products. So when the types select is click the products from that category are listed in the product select.
Thanks,
Ryan
I am trying to create a dropdown that selects mysql with php. For example I have two select dropdowns the first with types and second with products. So when the types select is click the products from that category are listed in the product select.
Code:
<select name="type" id="type"> <option value="1">Accessories</option> <option value="2">Cables</option> </select> <select name="product_item" id="product_item"> <option value=""></option> </select></p>
Ryan
Comment