如何刷新表单提交的PHP页面?

这个问题在这里已经有了答案:

  • 如何在PHP中进行重定向? 27个答案

  • 您可以将用户重定向到当前文件。 后:

    $updateQuery->execute();
    

    加:

    header("Location: yourfile.php");
    //header("Location: ".basename(__FILE__, '.php')); Might work too
    

    这会在执行查询后将用户重定向到此文件。


    // REFRESH PAGE
    echo "<meta http-equiv='refresh' content='0'>";
    
    链接地址: http://www.djcxy.com/p/34711.html

    上一篇: How to refresh a php page on form submit?

    下一篇: how to redirect/dispatch in php?