You could either save to a database as you go and then delete the entry when you're done.

Or you can keep printing the values to each page, such as:

Code:
<?php
    echo '<input type="hidden" name="age" value="' . $_POST['age'] . '">';
?>
Something like that.