So I have a form, people enter like 20 different things (date, name, project, whatever) these are passed to another php page that just echos everything out so they can double check the stuff the just put in. If it is ok, and they hit submit again everything is passed by way of input type=hidden variables to another php file which then puts everything into a mysql databse. It then uses header("location:checkit.php3 to display the next page.
That all works fine, what I want to happen next is to echo them all out again, after they've gone into the DB on another page that says thanks here is what you submitted.
How can I easily pass all those along again from that file that does nothing but DB calls? is this possible to do with an array? it seems like a nice place for an array, but not sure how to do that.
Thanks people.