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.
Amy
instead of carrying the info you could just have it on one page and switch everytime for each question...
like
question.php?ask=question1
question.php?ask=question2
question.php?ask=question3
...