Guest User

Untitled

a guest
Jul 29th, 2012
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. codeigniter session across all controllers
  2. $this->session->set_userdata('name', 'value');
  3.  
  4. $this->session->userdata('name');
  5.  
  6. $this->load->library('session');
  7.  
  8. $autoload['libraries'] = array('session');
Advertisement
Add Comment
Please, Sign In to add comment