Henrik,
You can use PHP & Javascript to acomplish this (although I can't think of any reason why you would want to!!)
//PAGE1
<a href="page2.php?variable_to_pass=test">Link</a>
//PAGE2
<head>
<script>
function submitForm() {
document.myform.submit();
}
</script>
</head>
<body onLoad="submitForm()">
<form action="page3.php3" method="post" name="myform">
<input type="text" value="<? echo $variable_to_pass; ?>" name="variable">
</form>
</body>
Hope this helps (please let me know why you would want to do this)
Mike
www.digitalegg.net