I’ve recently come across this error within a custom cms i’m building – this error appears when I submit a form that uses a multiselect – can anyone suggest the most common reasons for this error.
ok – i think it might be the multi-select arrays causing the problem, eg I have an array like this within a table..
hotels[url][]
hotels[text][]
hotels[url][]
Would this not be allowed in the $_POST?
It could be you’re submitting your form with GET instead of POST. Multi-selects usually use array notation (myarray[]) which are characters that are not usually allowed by CodeIgniter in the URL.
If you are sure you’re using POST then I would suggest checking two things: