Hi.
I have a form,
<input type="checkbox" name="module1">
<input type="checkbox" name="module2">
<input type="checkbox" name="module3">
<input type="checkbox" name="module4">
<input type="checkbox" name="module5">
I would like the PHP page to know what modules have been chosen, if I submit this I get ?module1=checked&module2=notchecked etc
How can I get this stuff into an array?
I've heard something about using <input name="module[number]" ? or something.
cheers