It actually isn't hard at all since you're not going to read from the database.
Let's work with your first page, the form page. I'll call it page1.php.
< form action="page2.php" method="post" >
< input type="text" name="somename" >
...more input fields
< input type="submit" >
< /form >
Now, let's work with page2.php, the file that your script will call to display the information your users just entered:
Start your php opener
print "$somename";
..print "therestofyourforminputnames";
End your php script
The $somename should be the name you assigned to each of your input fields. Hope this helps. 😉
-ashley