Skip Navigation

www.wimb.net - Cookies


I'm a cookie, but you can not eat all cookies.

I'm a cookie, but you can not eat all cookies.

I'm a cookie, but you can not eat all cookies.

Cookies

A cookie is a variable that via the browser temporary can be stored on a client's computer. As all variables a cookie has a name and a value. On request of the web server (the website) the browser can retrieve this cookie and send it back to the server. Cookies are stored in a text file whose exact name and location depend on the user's operating system and browser.

Cookie types

  • Preference Cookies They store your preferences. For example they can contain your ZIP code to get easily the local weather forecast.
  • Logon Cookies These can be used for an automatic logon when you visit your favorite forum.
  • Tracking Cookies They provide a more accurate count of site visitors. These cookies can insure that someone who visits your site 3 times per day isn't counted as three different visitors.

Sample Cookie

Below is an example of a sample line from a Netscape cookie file.

1234567
www.wimb.net TRUE / FALSE 1710837260 popup no

There are seven variables within each cookie, that are described below:

  1. Domain: The domain that created the cookie, and that can read the variable.
  2. Flag: This tells if all systems within the above domain can access the variable. This value will always be TRUE or FALSE.
  3. Path: This is the path that the variable can be used within. The "/" in the above example indicates that the variable can be used within the entire Web site.
  4. Secure: This is a TRUE or FALSE value, which tells if a secure connection (e.g., SSL) within the above domain is needed in order to use the cookie.
  5. Expiration: This shows when the cookie will expire in UNIX time. UNIX time is defined as the number of seconds since Jan 1, 1970 00:00:00.
  6. Name: The name of the variable being set. This can be any unique name.
  7. Value: This shows the value of the variable. In the above example the value is set to a computer's IP address, and then some unique identifier which is probably used within a proprietary database.

Unix Time Stamp Conversion

The Unix Time Stamp is based on seconds since 1/1/1970. With the Javascript form below such a timestamp can be converted to normal, human time.

Convert Unix timestamp to Date/Time
UNIX TimeStamp: Date/Time:

 

With the above form you can calculate the expire date of a cookie. Enter the Unix Time Stamp and click on the submit button. Look on your computer for some cookies, or use the date from the example cookie.

More...

The story above is the minimum to know about cookies, a lot more can be found on the web about thses cookies. My favorite place is cookie central

PID: 7008 CLT: 0.001 LMD: 2013-Aug-17

Updated 2007 Oct. 09