If I understood well what you want, offcource you CAN. Say that you have a post variable $name = $_POST['name']. OK, you just add that in the link as shown:
Code:
<?
$name = $_POST['name'];
?>
<html>........
<body>
<a href="somewhere.php?name=$name">LINK</a>
</body>
</html>
Note: The underlined "name" is a value that you set it as you like. But then when accessing the variable, you should use the name you set.(see example)
Then, from the file you linked you can access the variable as you would access it if it was GET one. E.g.:
Continuing the previous example:
Code:
<?
$name = $_GET['name'];
?>
Note: If I'd given the variables name (underlined one in the first example) instead of the "name" value the "user" one, I should write: $name = $_GET['user'];
Hope I helped!!!
Bookmarks