On Thu, 21 Mar 2002, Morten Nielsen wrote:
> I got a page, which is reloaded 3 times. When the user first sees the page
> he has to fill in some information. On the second page he press a button to
> confirm. I would then like for the third page to display what he has entered
> on the first page.
> What is the best way to store the variables from page one? Is a session the
> only/right way to do this?

Some possibilities:

1. Session

2. Hidden variables (easier if you make them all part of the same array 
and then just serialize it).

3. Store them in a database and just pass the index from page to page 
using a hidden variable.

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to