Search code examples
phpcookiessetcookie

setcookie not working on safari and firefox


I'm trying to set cookies on my project, but it is not working on Safari or Firefox.

I get results on Google Chrome though.

Here is my code:

 setcookie('mycookiename', 'data', time()+60*60*24*365, '/', false);
 print_r($_COOKIE['mycookiename']);

Thanks for help.


Solution

  • This code work properly

    setcookie("mycookiename", 'data', time()+60*60*24*365, "/", "", "", TRUE);
    print_r($_COOKIE['mycookiename']);