Welcome Guest, Not a member yet? Register   Sign In
set_cookie does not work
#1

I try to set a cookie for remember_me:

PHP Code:
$this->load->helper('cookie');
...
set_cookie(array(
            'name'   => $name,
            'value'  => $user
            'expire' => $expire
        
));
... 

After the login I get only the Session.

http://prntscr.com/ea2ixb

Thanks for your help.
Tom
Reply
#2

Your setting the cookie wrong, should be set like below:

PHP Code:
setcookie($cookie_name$cookie_valuetime() + (86400 30), "/"); // 86400 = 1 day 
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

(02-17-2017, 02:28 PM)InsiteFX Wrote: Your setting the cookie wrong, should be set like below:

PHP Code:
setcookie($cookie_name$cookie_valuetime() + (86400 30), "/"); // 86400 = 1 day 

Thank you for your answer!
But setcookie is a php function and set_cookie is a ci function. Is the usage still the same?
Reply
#4

(This post was last modified: 02-18-2017, 07:16 AM by InsiteFX.)

Yes it is still the same, but you can use an array in $name. It is just an Alias for CI .system/core/Input.php (SEE: set_cookie)

Also see ./system/helpers/cookie_helper.php
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB