PDA

View Full Version : Looking for a safe and efficient way to "carry" data from page to page


amykhar
01-21-2005, 11:25 AM
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

Marco van Herwaarden
01-21-2005, 11:40 AM
You could put all in an array and post that in a hidden field. Security on this would be a different mather.

Guy G
01-21-2005, 11:41 AM
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
...

or im wrong :/

Andreas
01-21-2005, 11:43 AM
You could extend the session table.

sabret00the
01-21-2005, 12:29 PM
couldn't you serialize the data to scramble it? and then carry it all in a hidden form field?

i.e.

$oldanswers = unserialize($answers);
$newanswers = $_POST['answers'];
$newanswers .= $oldanswers;
$answers = serialize($newanswers);



<input type="hidden" name="questions" value="$answers" />

i probably mean something that's not serliaze but you get what i mean, granted i have no experience of this, but the idea works.

Andreas
01-21-2005, 12:33 PM
No matter if you carry the data by hidden fields, cookies or within the URL:
It can be modified by the user.
To prevent this you would have to hash the data with some secret to make sure it has not been modified.

Xenon
01-21-2005, 04:41 PM
Personally i think Kirby's way is the best

add a field to the sessions table and there put in the serialized data of the already answered question.

Dean C
01-21-2005, 05:02 PM
Hmm sessions are ideal for carrying answers to survey questions across pages. The only other way I'd do it is serializing the $_POST info as sabe pointed out :) But if people want to cheat they can cheat. It's a sacrifice you have to make

amykhar
01-21-2005, 05:04 PM
Thanks for all the ideas, guys.

amykhar
01-22-2005, 12:59 AM
Efficiency question: What would use more server resources - doing a query for each question, or doing a file read for each question? In general, are file reads more intensive than querying the database?

Amy

Tekton
01-22-2005, 01:19 AM
In general, I thought that filereads were faster, right?

Brad
01-22-2005, 03:24 AM
Efficiency question: What would use more server resources - doing a query for each question, or doing a file read for each question? In general, are file reads more intensive than querying the database?

Amy
It depends on what sort of table you query. If the data is temp store it in memory and destory it once you are finished with it (or put it on the hard disk).

Reading from memory will be quicker then any sort of read on the HDD

Dean C
01-22-2005, 10:47 AM
Amy I think you're worrying too much about the query-side of things. Whilst as programmers we strive to make our sites as efficient as possible simple select queries even with joins, aren't that resource intensive. You can optimize them further by adding indexes as well. Anyways, database retrieval is far faster than retrieving from a file :)

Xenon
01-22-2005, 12:22 PM
DB systems are more optimized that file searches, so i'd always use DB instead of files.

but of course, depending on your loadbalance, a file can sometimes be more usefull ;)

amykhar
01-22-2005, 01:21 PM
Thanks, Dean :)

I'm really working right now on improving the efficiency and security of my php coding. I'm trying to learn as much as possible to make some bigger things I'm working on better.