Re: PHP adds hidden value
Ernestino wrote:
Then they don't get a cookie from the cookie jar ;)
Sessions work by giving a unique id the browser so that it can identify
itself to the browser. This has to be passed around somehow, and the
easiest and most transparent way is using cookies. its just like
storing username/password in the cookie except its a randomly generated
unique id that is specific for that browser. If a cookie isn't used,
then it needs to be passed around some other way.
Ernestino wrote:
Il Mon, 31 Jul 2006 07:38:48 -0700, Richard Levasseur ha scritto:
>
>
Well, and what if the user has cookies disabled?
>
Francesco
>
Ernestino wrote:
It should be true
[testo citato nascosto]
Well, and what if the user has cookies disabled?
>
Francesco
Sessions work by giving a unique id the browser so that it can identify
itself to the browser. This has to be passed around somehow, and the
easiest and most transparent way is using cookies. its just like
storing username/password in the cookie except its a randomly generated
unique id that is specific for that browser. If a cookie isn't used,
then it needs to be passed around some other way.
Comment