Welcome Guest, Not a member yet? Register   Sign In
Problems retreiving session data on View page
#6

(This post was last modified: 01-27-2015, 09:24 AM by CroNiX.)

Code:
$some_array = array(
  'first',
  'second'
);

//store the array as 'some_array' in session flashdata
$this->session->set_flashdata('some_array', $some_array);

another page:
Code:
//retrieve the array by it's key
$retrieved = $this->session->flashdata('some_array');

//now it's your regular numerically indexed array
echo $retrieved[1]; //second
Reply


Messages In This Thread
RE: Problems retreiving session data on View page - by CroNiX - 01-27-2015, 09:24 AM



Theme © iAndrew 2016 - Forum software by © MyBB