Possible Duplicate:
CodeIgniter Disallowed Key Characters
I have a bit of an issue with a form I'm trying to submit, its dynamic and the checkbox values come from the database, only problem is that one of the fields has a #
and when I try to submit the form, it returns 'disallowed key characters'
.
How do i make it ok to submit a #
?
replace :
with this :
in
system/core/input.php
It's hardcoded into the Input class in the function _clean_input_keys().
Just create a MY_Input class and override the function.
As per your question it seems that you are using get as a method in the form and because of that it is giving
disallowed key characters
error.To allow the character # just add it in the following in your CONFIG file -
And now the character # will be allowed in the url.