I have not written any code to set or get cookie. Am using only PHP session.
Its a mobile application and runs on Windows CE and Windows mobile scanners
If i don’t accept cookie session will not work.
It specifically say accept session cookie. When i accept it works.
So what is this Session Cookie ? any one have any idea
I think it is specifically to mobile scanners !!
Yes PHP sessions use cookies
(You can propogate the session id via the URL however this is famously insecure and will break anywhere PHP has difficulty parsing the URL (e.g. within javascript). Until such time as you really understand how sessions work in HTTP and PHP, then I’d strongly advise you to stick with cookie based sessions)
In this context it has a dual meaning: firstly it contains a value which references a set of data stored on the server- the session data. Secondly, they are usually implemented as browser session cookies – i.e. they persist on the browser as long as the browser is running, no longer.
No.