I have a problem with this..
When I press submit button I only get one value although I select several options ..
why ??
10x
Armando
my code !!!
<select name=idt multiple>
some SQL sentence which gives me options !!!
</select>
armando
Give your selectbox a name like "idt[]"
the brackets make PHP read the values as an array. After submitting you can read the idt[] array and get all selected values.