starkertowers
Programmer
I was previosly using cookies in an internet application that I am building and noticed that when a user opens multiple instances of the same app in the browser on their computer simultaneously, the user credentials are getting undesirably switched, presumeably due to the use of cookies in the app. I am trying to implement an alternate solution, one that is cookie free. Once the user logs in, i'd like to store their credentials in a header file that remains constant, while any subsequent page that is loaded in the body of the app will draw on these hidden variables in the header. I think the problem with this approach is that the subsequent pages have to be submitted before the values in the header can be extracted. Ultimately though, when a page is loaded, I want to retrieve the values from the header. Thanks in advance for any advice.