On the first page, start off with:
<?php
session_start();
session_register('s_social_security','s_date_of_birth');
Then set the values of $s_social_security and $s_date_of_birth appropriately in the normal fashion (they're ordinary variables).
On the second page:
<?php
session_start();
session_register('s_social_security','s_date_of_birth');
and $s_social_security and $s_date_of_birth now have the values they were given on the previous page.
Incidentally, I've added the "s_" in case you've called the form fields social_security and date_of_birth. Otherwise the values from the two different sources (the form versus the session) will probably end up stomping on each other sooner or later.