How to save value chosen in select?
How can I save the value chosen from a select box in a form and save it to a parameter to be passed to an action page? Below is the code to make the drop down box. I have a query earlier in the code that populates the list with the MovieTitle field from a database of films. It works well, brings up the list and holds the choice in the box. But I am not saving it anywhere and need to. Can't figure out how.
<!--- Movie list for drop down box --->
<select name="MovieTitle"
<option value=""></option>
<cfoutput query="movie_list">
<option value="#FilmID#">#MovieTitle#</option>
</cfoutput> --->
Thanks for any help!
woodsie