|
retrieving values of a checkbos
i have a form with a checkbox called productids
for example
<input type="checkbox" name="productids" value"1">
<input type="checkbox" name="productids" value"2">
<input type="checkbox" name="productids" value"3">
<input type="checkbox" name="productids" value"4">
<input type="checkbox" name="productids" value"5">
now it's very strange when i do
productids=request("productids") then if i have say 3 & 4 selected
in ie it shows me the resluts as on,on instead of 3,4
and in firefox ,
why?
what am i doing wrong?
|