Hi there
I'm sorry for being a bit off the topic, but I reconed that you should be able to help me in this regard:
I want create a drop-down menu with a few options such as below:
<form name="teamChooser" method="get" action="rugbyscore.php?teamid=">
<select name="teamid">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<input name="Submit" type="submit" value="submit">
</form>
I then want the selected value to be appended to the string in the "action" part. Is there any way to do this without javascript?
I can just send it as normal a normal GET transaction, but then I get the URL: "rugbyscore.php?teamid=3&Submit=submit". The submit variables look really bad. Is there a way to just avoid them being sent?
I hope to hear from someone real soon.
Regards,
Comlink