php - Retrieve information from session array in codeigniter
676
I have created session array and I have placed values there like the code below
$ar= array(
'product_id' => $this->input->post('productid'),
'qty'=> 1,
);
//creating products session array for the first time
$this->session->set_userdata('products',$ar);
Now, How to retrieve those information? and I need to push new information to existing session array. How to do that?
Answer
Solution:
Simply fetch it and access it as an array:
Pushing is similar: