Is it possible to delete $_COOKIE
(cookies) from browser where $_SESSION
(sessions) also destroys.
Where both are stored. How both are interrelated to each other ?
Asked
Active
Viewed 1,573 times
-2

Neelesh
- 193
- 1
- 12

Palak Amle
- 1
- 2
-
possible duplicate of [How session and cookie works?](http://stackoverflow.com/questions/1622947/how-session-and-cookie-works) – farhangdon Apr 29 '15 at 11:09
-
You have session cookies, that last while your browser tab/window is open, and "regular" cookies that are stored in your device until you clean the cookies or they expire. – Pedro Lobito Apr 29 '15 at 11:10
1 Answers
0
session uses the cookies to store its values. but session can also work without cookies if cookies are disabled in the web browser.every time when user enter into a website a Unique session id is generated for that user. session either store the session id in cookies or that session id is propagated in the URL.

Kailash Pathak
- 5
- 8