Oct 11th, 2011, 11:19 AM
Hey Dave,
No worries! And sorry - I should have glanced at your attached form. The problem is that in order to pass an array of values for a group of checkboxes, you need to tweak the checkbox name attributes from this:
To this:
That should fix it up! You only need to change that in your form - not within Form Tools.
All the best -
Ben
No worries! And sorry - I should have glanced at your attached form. The problem is that in order to pass an array of values for a group of checkboxes, you need to tweak the checkbox name attributes from this:
Code:
<input type="checkbox" name="services" />
To this:
Code:
<input type="checkbox" name="services[]" />
That should fix it up! You only need to change that in your form - not within Form Tools.
All the best -
Ben