These variables should be stored now in session memory.
These will be available on any page a session is started, until overwritten or destroyed, or by browser closing/timing out.
You can call them:
$somthing = $_SESSION['carrier'];
or how ever you need to use them.
<input name="blah" value="<?php echo $_SESSION["carrier'];?>'>
solved Storing radio button data in a session [closed]