I need to display a table after the user choose selected value from dropdownlist. I have tried searching at the internet the example of the coding, but I didn't find any. My coding will be like this :
<select name="ddlEqu" size="1" tabindex="1" onchange="select(this.value)" id="Equddl_source">
<option selected value="select"><--Select--></option>
<option value="D1">T-Shirt</option>
<option value="D2">Jacket</option>
<option value="D3">Shoes</option>
</select>
If the user choose T-shirt, list of T-shirt will be display in table form. Like this :
ID | T-Shirt | Description | Price
1 | Mickey Mouse | Color = Black | RM 29.90
2 | Camera Shirt | Color = Pink | RM 32.50
3 | | = White |
Can Someone help me, please...