the simplest way to do this is to pass the data from the first page to the second (<form method=x action=[secondpage]>) and than on that page create a hidden fields with the info from the first page:
<input type="hidden" name=<?php echo $$name; ?> value=<?php echo $name?>
<input type="hidden" name=<?php echo $$addres; ?> value=<?php echo $addres?>
That way when the user will submit the data from the second page the data from the first page will be added as well.