If you need to retain values supplied by some user from one page request to the next, there are a variety of ways this can be done. Which method you use depends on a variety of things:
is the data sensitive?
is there any risk of hackers exploiting this value or trying other values?
* is there a lot of data (e.g., 5000 characters) or is it really short.
As NogDog suggested, you could use [man]session_start[/man] to begin a session on the first page, then store the data in [man]$SESSION[/man] and then call session_start on the later pages and check for the value you stored in $SESSION. This method depends on the propagation of a session id which is usually accomplished using cookies. PHP can take care of all the details under most circumstances, but if the user doesn't accept your cookies (or send them back to you) then you are out of luck.
Another way is simply to pass the value along as part of a url:
// NOTE: this approach is probably vulnerable to hacker abuse
$val = $_POST["val"];
// do some kind of calculation here maybe
echo 'You can find your results on <a href="/path/to/some/other-page.php?val=' . urlencode($val) . '">this other page</a>';
You can also put the value into a form input, etc.