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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.