I'm getting the following error when sending when sending json data via ajax using the codeigniter: Disallowed Key Characters. When I send only one object it works without problems, but when I send more than one object it returns the error.
jQuery.post( "http://localhost/endereco",
{informacao1:"dado1", informacao2:"dado2"},
function(data){
alert(data);
}
);