Question about using html forms and user input choices?

Nick

New member
I am wondering if its possible to create an html form based on user submissions from an html page (radio buttons, etc.) I have a site about building a gaming computer and I want to create a checklist that people can enter information on the certain parts they want to use. When they submit their choices, I would like to have a form that lists their parts in an organized fashion. Is this possible?
 
change form with your site values: <body>

<form action="">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat" selected="selected">Fiat</option>
<option value="audi">Audi</option>
</select>
</form>

</body>
</html>
 
Back
Top