Possible Duplicate:
CodeIgniter Disallowed Key Characters
When I check all the checkboxes (code below) it gives me this error:
Disallowed Key Character
Here's my HTML:
<label>Stability Control </label><input type="checkbox" class="largercheckbox" name="checkBox[Stability-Control]"></input><br/>
<label>Xenon Headlamps</label><input type="checkbox" class="largercheckbox" name="checkBox[Xenon-Headlamps]"></input><br/>
What's the problem here? I think my config file permits those characters:
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';