When i create a session variable where is saved username and password, how does it works internally? Same question about regular cookies where information is saved. Which type of information are included in coookie and session? What is the difference between them?
|
|
|||||||||||||||||||
|
|
|
To sum it up a cookie is a file on the client's computer. You can store whatever in it (objects, text...). A session object can be stored in a cookie in the same way you can store some text. Keep in mind that session != cookie because sometimes you can store a session object in the database. But still, you'll have to read up some documentation, I think. Seen on wikipedia:
|
||
|
|
|
|
Generally, session data is stored on the server, and it uses a tracking cookie to attach a user with the data. Cookies on the other hand are set directly in the user's browser. One key difference: Session variables generally can't be seen by the end user, but cookies can(with the right browser plugin) Also, if you have multiple front-end web servers, cookies will be sent to all front end servers, but session data is not shared between them without extra work. |
||
|
|
|
|
The best article on sessions and cookies I ever found is |
||
|
|
