/*index.php*/
<form id="test">
<input type = "text" name = "exam">
</form>
<a href="#" onclick="window.open('index2.php?a=a')">リンク</a>
/*index2.php*/
<html>
<head>
<script>
//textボックスの中身をHOGEに変更する。
opener.document.getElementById("test").exam.value ="<?='HOGE'?>";
window.close();
</script>
</head>
</html>