Skip to content

Instantly share code, notes, and snippets.

@stoddsie
Created April 8, 2013 13:58
Show Gist options
  • Save stoddsie/5336954 to your computer and use it in GitHub Desktop.
Save stoddsie/5336954 to your computer and use it in GitHub Desktop.
Codeigniter:Set array from session data
$userdata = array(
'username' => $this->session->userdata('username'),
'account' => $this->session->userdata('company'),
'email' => $this->session->userdata('email')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment