Welcome Guest, Not a member yet? Register   Sign In
How to add, access, unset arrays in CI session?
#4

[eluser]CodeIgniterNewbie[/eluser]
Doh! It's so simple and I missed it. Here's my solution:

// To set it
$fruits = array('apple', 'banana', 'orange');
$this->session->set_userdata('fruits', $fruits);

// To get it
$my_fruits = $this->session->userdata('fruits');

// To unset it
$this->session->unset_userdata('fruits');


Messages In This Thread
How to add, access, unset arrays in CI session? - by El Forum - 06-16-2010, 04:11 PM
How to add, access, unset arrays in CI session? - by El Forum - 06-17-2010, 12:17 AM
How to add, access, unset arrays in CI session? - by El Forum - 06-17-2010, 03:53 AM
How to add, access, unset arrays in CI session? - by El Forum - 06-17-2010, 04:15 AM



Theme © iAndrew 2016 - Forum software by © MyBB