popup1.php
<script>
function pepz(pageURL, title,w,h) {
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
</script>
<a href="" onclick="pepz('<?php echo"popup2.php"; ?>', 'myPop1',465,410)"><?php print"Click"; ?></a></td>
popup2.php
<form action='#' method='post'>
<input type='submit'>
<form>
ポップアップのフォームで送信ボタンをクリックした後、ポップアップを閉じ、ポップアップを呼び出した親ページを更新する必要があります。
私は何が間違っているのですか?ありがとう:D