Have a look at
Multipage Form Tutorial which can do exactly what you want. To view the info of the first page, in the second one, you need to repeat the same fields, and put, as initial value of each one of them, the following:
<? echo $_POST['fieldname'];?>
replace, FOR EACH FIELD, the word "fieldname" with the actual name of the field in the first page.
You cannot use the form wizard for a multipage form, you need to use a separate processing script.
ALL the pages, exept the first one, which can be html, ALL the others MUST be php