Looking for a safe and efficient way to "carry" data from page to page
Is there a way for me to "carry" a chunk of information around from one screen to another without using cookies?
For example, let's say I have a table that has a questions for a survey I want people to take. If I want the people to answer the questions one at a time and not all on the same page with a single click, can I query the database once and get all the questions and then use that info to show the first question, get a response, show the second question, etc.?
What I am trying to avoid is having to query for the first question, get the response, query for the second question, etc.