Useful tip for creating checkbox arrays using the form helper similar to
<input name="test[]" type="checkbox" />
If you add a dot to the end of the name when creating the checkbox, the formhelper will automatically turn it into an array, so the following
echo $this->Form->input("test.", array("type" => "checkbox"));
Will output
<input name="Model.test[]" type="checkbox" />