is there a way to have two values in a select’s option? I have made a redirection script based on the selected item but I would like to submit a value to the next page also.
Here is the select list
<select size="1" name="Products"
onchange="if(this.options.selectedIndex>0) location.href=this.options [this.options.selectedIndex].value">
<option value="">Please Select a Product</option>
<option value="page1.php">Design
Software</option>
<option value="page2.php">Manufacturing
Software</option>
<option value="page3.php">Machine Tools</option>
</select>
Thank you for your time!
You could always try adding the extra variable as a GET variable to the url like so