Welcome Guest, Not a member yet? Register   Sign In
store array into session.
#2

[eluser]Vince Stross[/eluser]
Code:
$my_data = array(0=>array(...),1=>array(...),2=>array(...));
$this->session->set_userdata('my_data',$my_data);

To play with your data you have to pull it into a variable:

Code:
$my_data = $this->session->userdata('my_data');
// Now $my_data is a 2D array


Messages In This Thread
store array into session. - by El Forum - 05-14-2008, 05:57 AM
store array into session. - by El Forum - 05-14-2008, 07:16 AM



Theme © iAndrew 2016 - Forum software by © MyBB