I have the following code:
$session_data = array(
'user_id' => $user_id,
'username' => $username,
'group_id' => $group_id,
'logged_in' => TRUE
);
$this->session->set_userdata($session_data);
The user_id and logged_in is stored perfectly into db, but the username and group_id is stored with an "N". The structure of the system is "modular", in my older applications following just MVC would work just fine.
Did anybody had this problem before, and if you did could you give a little bit of help ?
EDIT: all N values are the problem where instead should be the actual value of each data
below is the user_data field from the database
a:5:{s:9:"user_data";
s:0:"";s:7:"user_id";N;
s:8:"username";N;
s:5:"group";N;
s:9:"logged_in";b:1;}
