What are sessions? How do they work?
Because HTTP is stateless, in order to associate a request to any other request, you need a way to store user data between HTTP requests. Cookies or URL parameters ( for ex. like http://example.com/myPage?asd=lol&boo=no ) are both suitable ways to transport data between 2 or more request. However they are not good in case you don’t want … Read more