通过Iframe发布数据后刷新页面

时间:2017-06-05 05:54:55

标签: php html iframe

我必须使用iframe来阻止页面在操作完成之前重新加载。但是,我需要在动作发生后刷新它。我尝试了两种方法,刷新页面并重定向到同一页面。

PHP:

if(isset($_POST['btn']) {
   //Action
   location.reload(); 
  //I also tried 
    header("Location: index.php");
} 

HTML:

<iframe width="0" height="0" border="0px solid white" style="display:none" name="iframe1" id="iframe1"></iframe>

        <form action="index.php" method="post" target="iframe1">

            

感谢您的帮助。所有输入都表示赞赏。

0 个答案:

没有答案