Feb 1st, 2010, 2:06 PM
Hey AeroStar,
PHP is getting confused by the submission. It dosen't quite get that you are receiving multiple fields from that.
The way around it is in the Form it self.
On your checkboxes, add a [] to the end of the name.
Example:
That problem used to drive me crazy!
PHP is getting confused by the submission. It dosen't quite get that you are receiving multiple fields from that.
The way around it is in the Form it self.
On your checkboxes, add a [] to the end of the name.
Example:
Code:
<input type="checkbox" name="checkbox[]" value="option1" />
<input type="checkbox" name="checkbox[]" value="option2" />
That problem used to drive me crazy!
