Hi,
I'm wondering how I can capture which checkboxes are checked by the user when each checkbox has the same name (but different values). See the following:
<INPUT type="checkbox" name="box" value="1">
<INPUT ytpe="checkbox" name="box" value="2">
<INPUT type="checkbox" name="box" value="3">
In the above case when the first and third are checked, how do I know of that with PHP? I'm assuming box becomes an array containing value 1 and 2...? BTW, the number of checkbox can be vary, there'd be only one checkbox in one time and in another time, there will be as many as 10 checkboxes.
Please help! Thanks.
gibb