you can form a querry resonse url on the link like so:
echo "<a href=somehtml.phtml?value=" . $value . "> Some Link</a>";
the value can then be retreived from globals in the new page:
$value = $_POST['value'];
the other way is to use sessions. You should read the manual, but
here's what you do
in the page to send the data
session_start();
//must go before any html is ever sent to the client
//attach the variable to the session
$_SESSION['value']=$value;
and in the page you want to retrieve the value:
session_start();
$value= $_SESSION['value'];
good luck,
r