如何刷新表单提交的PHP页面?
这个问题在这里已经有了答案:
您可以将用户重定向到当前文件。 后:
$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