I need to know how I can get information selected in a dropdown list when I press submit and then get the information displayed in a table within the same page.
I have created the dropdown list:
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
Please let me know how to display if for instance I select Volvo to be displayed within a td:
<table>
<tr>
<td></td>
</tr>
</table>
Thanks