on the page where you put the link:
$variable = urlencode($variable); // wrap it as a gift
echo "<a href=\"bla.php?variable=$variable\">blabla</a>";
on the target page (bla.php):
$variable = urldecode($variable); // unpack the gift
-> now $variable contains the same as initially, in the first script.