Free Online Programming Tutorials

Let’s Learn Web Programming!





Archive for the ‘Advanced Programming Concepts’ Category

Here’s more info on cookies that you may want to know -

• When the cookie is requested for the first time, the cookie is stored using the set-Cookie entry in the header of the response from the server.
• Set-cookie : name= value; expires = Date;Path=PATH;domain=DOMAIN;secure

Optional attributes are –
Read the rest of this entry »

Cookie is a method of storing information about the page returned by the server and stored locally in the browser.

Purpose of the cookie is to store the state of the client enabling the server to know about the client’s previous actions on the page downloaded…
Read the rest of this entry »