Jump to content

PHP Cookies


mikhl

Recommended Posts

I have a cookie that sets the users ID number. This is so that they can be logged on. The cookie lasts for 24hours or until the user logs out.

 

I have recently noticed that if a user logs in at http://website.com they are not logged in at http://www.website.com this is causing a few problems.

Is there any way to set a cookie so that it works for both of these url's.

 

The code that I have used to create the cookie is:

setcookie(fp_user,$user_id,time()+60*60*24)

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/244424-php-cookies/
Share on other sites

Instead use '/', per the manual:

 

Path:

The path on the server in which the cookie will be available on. If set to '/', the cookie will be available within the entire domain. If set to '/foo/', the cookie will only be available within the /foo/ directory and all sub-directories such as /foo/bar/ of domain. The default value is the current directory that the cookie is being set in

Link to comment
https://forums.phpfreaks.com/topic/244424-php-cookies/#findComment-1255414
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.