i have some question in Codeigniter session class:
whats different between these
$this->session->all_userdata(); $this->session->userdata
both of them return array of all user data in ci session (cooke).
and why this code is wrong:
$this->session->userdata();
but this one is correct:
$this->session->userdata
why?