HowdeeDoodee
Technical User
I need to pass more than one value from within a drop down box.
The following code is not working because the first option value statement is not correct. How do I pass three values at one time when only one option is selected by the user?
I want the eventual output from this form to be like this...
Thank you in advance for any replies.
The following code is not working because the first option value statement is not correct. How do I pass three values at one time when only one option is selected by the user?
Code:
<form action="">
<br>
What source do you want to use?<br>
<input type="checkbox" name="MX" value="ON">MX<br>
<input type="checkbox" name="ZX" value="ON">ZX<br>
<br>
Which reference do you want to see?<br>
<select name="internet">
<option value=BK=Tap&CH=10&VR=20>BKTapCH10VR20
<option value="No value">No value
</select>
<br>
<input type="submit" value="Send it"><input type="reset" value="Clear it"></p>
</form>
I want the eventual output from this form to be like this...
Code:
[URL unfurl="true"]http://www.webpage.com/XZ/SeeNew.php?BT=ON&BK=Tap&CH=10&VR=20[/URL]
Thank you in advance for any replies.