I have a problem with some old webbrowsers that they do not send variables from the <select>-list from a form to the next page.
All other variables are sent and works fine (it all works fine with all the normal webbrowsers)
Here is my code:
<form action="skicka.php" method="post">
<input type="text" name="name" size="35" maxlength="30>
<select name="lista">
<option value="------">----</option>
<option value="nummer1" >nummer1
<option value="nummer2" >nummer2
<option value="nummer3" >nummer3
</select>
<input type="submit" name="submit" value="Skicka!">
</form>
So the variable $name works with those old browsers, but not the variable $lista
Anyone knows how to solve this ?