CodeIgniter doesn’t like bad characters in cookies
CodeIgniter (and some other PHP frameworks, for that matter) can freak out over strange cookie names. For example, the `
character will trigger a “Disallowed Key Characters” — though strangely, in IE only. One solution is to allow that character in your Clean Keys filter in your Input
class.
---