i have problem for access user information without using session and without using cookies.
How can i manage user information without session and without cookies??
Please help
i have problem for access user information without using session and without using cookies.
Share
Assuming you are talking about web browsers and HTTP: You can’t.
HTTP is a stateless protocol. To overload it with server-side state requires some means of uniquely identifying the requestor. And cookies are the only way web browsers have of maintaining client-side state.
[edited to note]I should point out, however, that one could conceivable embed a limited amount of state data in the URI proper, as part of the query or fragment portions of the URI. It’s limited because most (every?) implementation imposes some sort of limit on the maximum length of a URI. Further, your web app will need to ensure that the state data is propagated from URL to URL properly. And it should be encrypted for security, lest URI-twiddling allows your site to be cracked.