If you have an installation of formtools 2.2, you'll need to make sure you've created another view and given your new view a name for that set of fields, otherwise your newly added fields won't show up under the view you had originally created.
Also, your label tags are incorrect. The label tags should be set up to surround only the label itself and not the entire field. Ex: <label>Porto</label><input type="checkbox" name="porto" id="agencias"> And adding name=whatever[] within a label tag serves no purpose in your case.
What Ben's referring to in this thread is that with FT2.2, you can create an external form and name all of your checkbox fields with one "name=whatever[]" but you'll need to manually set up all of the options based on your checkbox field values. Use this form as an example of how you would set up your checkbox fields:
<form action="http://www.mydomain.com/ft/process.php" method="post">
<input type="hidden" name="form_tools_form_id" value="4" />
<input type="checkbox" name="cb[]" value="One">1<br>
<input type="checkbox" name="cb[]" value="Two">2<br>
<input type="checkbox" name="cb[]" value="Three">3<br>
<input type="checkbox" name="cb[]" value="Four">4<br>
<input type="checkbox" name="cb[]" value="Five">5<br>
<input type="checkbox" name="cb[]" value="Six">6
<p><input type="submit" value="Submit">
</p>
</form>
Creating a new form, this would set up a single field for the checkboxes named "cb". In order for this to work for formtools, the form setup wizard would prompt you to enter an option for each checkbox. Ex: For One, you might enter the option "1". For Two, "2" and so on. This is how it will display in the database's "cb" field for each box checked by the submitter: 1,2,3,4 etc..
The way I was trying to show you how to set up your checkbox fields was just a simple "skip-this- step" traditional way simply by treating each checkbox as a separate field no different than a text field or select field. Either way will work.
Hope this helps.
Also, your label tags are incorrect. The label tags should be set up to surround only the label itself and not the entire field. Ex: <label>Porto</label><input type="checkbox" name="porto" id="agencias"> And adding name=whatever[] within a label tag serves no purpose in your case.
What Ben's referring to in this thread is that with FT2.2, you can create an external form and name all of your checkbox fields with one "name=whatever[]" but you'll need to manually set up all of the options based on your checkbox field values. Use this form as an example of how you would set up your checkbox fields:
<form action="http://www.mydomain.com/ft/process.php" method="post">
<input type="hidden" name="form_tools_form_id" value="4" />
<input type="checkbox" name="cb[]" value="One">1<br>
<input type="checkbox" name="cb[]" value="Two">2<br>
<input type="checkbox" name="cb[]" value="Three">3<br>
<input type="checkbox" name="cb[]" value="Four">4<br>
<input type="checkbox" name="cb[]" value="Five">5<br>
<input type="checkbox" name="cb[]" value="Six">6
<p><input type="submit" value="Submit">
</p>
</form>
Creating a new form, this would set up a single field for the checkboxes named "cb". In order for this to work for formtools, the form setup wizard would prompt you to enter an option for each checkbox. Ex: For One, you might enter the option "1". For Two, "2" and so on. This is how it will display in the database's "cb" field for each box checked by the submitter: 1,2,3,4 etc..
The way I was trying to show you how to set up your checkbox fields was just a simple "skip-this- step" traditional way simply by treating each checkbox as a separate field no different than a text field or select field. Either way will work.
Hope this helps.