ตัวนี้ใช้ได้ทั้ง ASP และ PHP และอื่น ๆ
Sample1.php
Code
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<body bgcolor="#FFFFFF">
<form name="form1" method="post" action="">
<script language="JavaScript">
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features).focus();
}
</script>
<input name="name" type="text" id="name">
<a href="javascript:MM_openBrWindow('Sample2.php', 'xxx','scrollbars=no,width=350,height=210')"& gt;เลือกข้อมูล</a>
</form>
</body>
</html>
Sample2.php
Code
<html>
<head>
<form action="" method="post">
<input name="n" type="text" id="n">
<input type="submit" name="Submit" value="Submit" onClick="opener.document.all.name.value=document.all.n.value;window.close();">
</form>
</body>
</html>
หรือถ้าต้องการให้แสดงผลทันที
Sample2.php
Code
<html>
<head>
<form action="" method="post">
<input name="n" type="text" id="n" onKeyPress="opener.document.all.name.value=document.all.n.value;">
<input type="submit" name="Submit" value="Submit" onClick="opener.document.all.name.value=document.all.n.value;window.close();">
</form>
</body>
</html>