Hello,
I'm trying to create a form (in page A)which will post the information gathered to another page (😎 for further process . There are lots of checkbox fields in the form, just like this:
<input type="checkbox" name="product" value="00">00
<input type="checkbox" name="product" value="01">01
<input type="checkbox" name="product" value="02">02
<input type="checkbox" name="product" value="03">03
Suppose i checked the "00","01","03", 3 checkboxs. and then i submit the form.
if B is a asp page. i can get the Request("product") ,which value is "00, 01, 03". but if B is a PHP page. its will generate variable $product, which value is just "03". why? and how i can get "00, 01 ,03" in PHP file?
Does anyone have faced this scenario before? All help is appreciated.
Lanbor