I'm probably missing something obvious but here goes:
If I have a HTML checkbox field on a php form, for example:
<input type="checkbox" id="chkField" name="chkField" value="Red">Red
<input type="checkbox" id="chkField" name="chkField" value="Blue">Blue
If I select both Red and Blue, then submit my form it only seems to store the last value selected and not both.
Do I have to do something to handle this or am I missing something.
Any help appreciated.
