Helo,
I've got a question.
I've got a selection box in HTML. Now what I want is, that when the selection changed, a website is called with the value.
For example:
<select>
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
<option value="d">d</option>
</select>
Now, when I choose c, then the URL change.php?option=a is called.
Thank you :-)