Hacker News new | ask | show | jobs
by chasd00 1604 days ago
To me, it was cookies that opened the pandora's box of webapps. Cookies are what made user sessions, shopping carts, and everything else possible.
1 comments

We could have built everything we have without cookies. Start a session and pass the session id back to all the links for that user and go fom there. So, instead of the Cookie header, you'd have the same information in the GET/POST parameters.
Wouldn't the average user lose their session when closing the browser or navigating away in that case?