views:

23

answers:

1

Hi, I have an issue when posting fields like the following in codeigniter
type="checkbox" name="test[some content]"
Notice the space between [some content]. If there is no space it works fine, but I need it to have space. Any help is greatly appreciated.

A: 

If you have a "disallowed character" problem in CodeIgniter it is probably due to the limitations in system/application/config/config.php. Check the "permitted_uri_chars" setting in that config file and add the characters you need.

Andreas