I just got back from a talk. I overheard the term “inline sessions” which should be an alternative to cookie sessions. Do you guys know what that is and if it can be implemented in PHP?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
They are probably talking about sessions whose key is persisted through form or query string parameters.
PHP used to have a setting to enable this transparently. It would basically parse your HTML and add a SESSID variable to the end of every href and form action.
This meant if cookies were disabled, the session could still be persisted.
I think things like Ajax has deprecated this functionality.