i have a simple html form with 3 drop downs (select with options)
on submit i want to not deliver the empty variable.
for example:
<select name="numbers">
<option></option>
<option>11</option>
<option>22</option>
<option>33</option>
</select>
<select name="letters">
<option></option>
<option>aa</option>
<option>bb</option>
<option>cc</option>
</select>
if the form is send I get numbers and letters with an empty value.
in this case the variable numbers and letters should be deleted and not be posted to the action form