Welcome Guest, Not a member yet? Register   Sign In
set_cookie not working
#15

[eluser]Bhashkar Yadav[/eluser]
i don't think, array data type can be stored into cookie. can you try like
Code:
$cookie = array(
    'name'   => 'remember',
    'email'  => $email,
    'value'  => $value,
    'expire' => '86500',
    'domain' => '',
    'path'   => '/',
    'secure' => TRUE);
$serialize_cookie = serialize($cookie);
$this->set_cookie('MyCookieData', $serialize_cookie);

while accessing
Code:
$d = $this->get_cookie('MyCookieData');
$d1 = unserialize($d);


now you can access $d1['name'];


Messages In This Thread
set_cookie not working - by El Forum - 01-27-2012, 11:03 AM
set_cookie not working - by El Forum - 01-27-2012, 11:11 AM
set_cookie not working - by El Forum - 01-27-2012, 11:15 AM
set_cookie not working - by El Forum - 01-27-2012, 11:21 AM
set_cookie not working - by El Forum - 01-27-2012, 12:08 PM
set_cookie not working - by El Forum - 01-27-2012, 12:26 PM
set_cookie not working - by El Forum - 01-27-2012, 12:39 PM
set_cookie not working - by El Forum - 01-27-2012, 01:40 PM
set_cookie not working - by El Forum - 01-27-2012, 01:41 PM
set_cookie not working - by El Forum - 01-27-2012, 01:44 PM
set_cookie not working - by El Forum - 01-27-2012, 01:48 PM
set_cookie not working - by El Forum - 01-27-2012, 01:53 PM
set_cookie not working - by El Forum - 01-27-2012, 02:52 PM
set_cookie not working - by El Forum - 01-27-2012, 06:19 PM
set_cookie not working - by El Forum - 01-27-2012, 07:33 PM
set_cookie not working - by El Forum - 01-27-2012, 07:49 PM
set_cookie not working - by El Forum - 01-27-2012, 07:52 PM
set_cookie not working - by El Forum - 01-27-2012, 10:17 PM
set_cookie not working - by El Forum - 01-28-2012, 09:03 PM
set_cookie not working - by El Forum - 01-29-2012, 01:54 AM
set_cookie not working - by El Forum - 01-29-2012, 03:16 AM
set_cookie not working - by El Forum - 01-29-2012, 11:36 AM
set_cookie not working - by El Forum - 01-29-2012, 12:16 PM



Theme © iAndrew 2016 - Forum software by © MyBB