Welcome Guest, Not a member yet? Register   Sign In
Can't unset session variable
#2

[eluser]Jason Stanley[/eluser]
You aren't using the session library as intended. Typically you call the set_userdata function. You appear to be specifying a class variable.

You want to do something like this.

Code:
$details = $this->session->userdata('prescription_details');
$details['prescription_details'][$id][$item]['prescriptionName'] = '';
$this->session->set_userdata('prescription_details', $details);


Messages In This Thread
Can't unset session variable - by El Forum - 02-02-2012, 05:19 AM
Can't unset session variable - by El Forum - 02-02-2012, 05:35 AM
Can't unset session variable - by El Forum - 02-02-2012, 06:04 AM



Theme © iAndrew 2016 - Forum software by © MyBB