I'm using Dreamweaver MX 2004.
I am trying to make a List Menu with different options.
Could anyne tell me how to link the items to the different pages when the submit button is clicked.
The code I have is:
<form action="" method="post" name="menu" id="menu">
<select name="select">
<option selected>US 1960</option>
<option>US 1970</option>
<option>US 1980</option>
<option>US 1990</option>
<option>US 2000</option>
</select>
<input type="submit" name="Submit" value="Submit">
</form>
What I am looking to is that if someone selects US 1970 the clicks the submit button then for it to go to the page usold70.htm
From US 1980 to link to usold80.htm and so on.
I cannot figure out how to make these links or where to put them.
If anyone can help please change the code to show how it should look
All help much appreciated.
I am trying to make a List Menu with different options.
Could anyne tell me how to link the items to the different pages when the submit button is clicked.
The code I have is:
<form action="" method="post" name="menu" id="menu">
<select name="select">
<option selected>US 1960</option>
<option>US 1970</option>
<option>US 1980</option>
<option>US 1990</option>
<option>US 2000</option>
</select>
<input type="submit" name="Submit" value="Submit">
</form>
What I am looking to is that if someone selects US 1970 the clicks the submit button then for it to go to the page usold70.htm
From US 1980 to link to usold80.htm and so on.
I cannot figure out how to make these links or where to put them.
If anyone can help please change the code to show how it should look
All help much appreciated.
Comment