This is my html:
<select name="results">
<option value="0">Vis alle</option>
<option value="10">10 resultater per side</option>
<option value="20">20 resultater per side</option>
<option value="30">30 resultater per side</option>
<option value="40">40 resultater per side</option>
<option value="50">50 resultater per side</option>
<option value="75">75 resultater per side</option>
<option value="100">100 resultater per side</option>
</select>
When the topmost option is selected and form submitted, the get variable "results" disappears from the URL. I've tried switching out the 0 with strings "*" and "x" to no avail.
Thanks for any explanations and solutions.