Ok the problem is this, when i try to receve the values from a form with the
selection list below:
<select name="jogos" size="5" multiple id="jogos">
<option value="1">Battl efield 1942</option>
<option value="2">Call of Duty</option>
</select>
The problem is that the variable $_POST['jogos'] only have the last option,
for example if i select Battlefield 1942 (value 1) and Call of Duty (value
2) it only have the value 2.
What i'd like to know is how to get all the values selected from the select
list.
Thx in advance,
João Proença
selection list below:
<select name="jogos" size="5" multiple id="jogos">
<option value="1">Battl efield 1942</option>
<option value="2">Call of Duty</option>
</select>
The problem is that the variable $_POST['jogos'] only have the last option,
for example if i select Battlefield 1942 (value 1) and Call of Duty (value
2) it only have the value 2.
What i'd like to know is how to get all the values selected from the select
list.
Thx in advance,
João Proença
Comment