IF you wish to preserve it as-is on the submission page you could simple write $_POST to a $_SESSION variable.
$_SESSION['lastFormPost'] = $_POST;
would copy post into the session variable and then use the session variable to do what you want with, and when you are finished with it do unset($_SESSION['lastFormPost']); to remove it.