I've got a form where the output of the form will go to 75 possible different places based on the user input. I can't figure out how to dynamically change the ACTION field based on the input. I've got:
<form name="formx" action="???" method="post">
<select name="year">
<option>Select Year<option>2003<option>2004<option>2005</select>
<select name='month'>
<option>Select Month<option>January<option>February<option>etc</select>
<select name='type'>
<option>Read Thread Online<option>Download Entire Thread</select>
<input type="submit" value="Go To Page">
</form>
The ACTION based on the input would be:
or html)
I've searched around, and have found several examples based on ONE select type, but I can't find or figure out multiples.
<form name="formx" action="???" method="post">
<select name="year">
<option>Select Year<option>2003<option>2004<option>2005</select>
<select name='month'>
<option>Select Month<option>January<option>February<option>etc</select>
<select name='type'>
<option>Read Thread Online<option>Download Entire Thread</select>
<input type="submit" value="Go To Page">
</form>
The ACTION based on the input would be:
or html)
I've searched around, and have found several examples based on ONE select type, but I can't find or figure out multiples.