I have an array called config. I\'m trying to echo a variable from the array in the session.
I\'ve tried:
echo $this->session->userdata(\'config[\
Always escape your string it should be this way:
echo $this->session->userdata('config[\'item\']');