I'd save each input field to a database, and then display them all on a separate page which retrieves each record.
There are plenty of examples of this, I'd check out:
http://www.liquidrage.com
http://4guysfromrolla.com
http://www.aspalliance.com
Something like this is fairly easy though - just make an access db with two fields, and add a primary key field (AutoNumber), and when they post the form, validate the data, and if the data is good then insert it into the database.
Then to display it all, you can just use a simple SQL statement...
Check out the answer I gave to Idiuf very recently to see a really basic way to get the stuff in your database - there's lots of other thread here too that should help!