Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 php 脚本,我提供所有数据并保存存储在我的 mysql 数据库中的数据。但之后如果刷新页面,相同的数据将再次存储在数据库中。我怎样才能避免这种情况。请帮助我。
使用标题并重定向页面。
header("Location:your_page.php");您可以重定向到同一页面或不同的页面。
header("Location:your_page.php");
将 $_POST 插入数据库后取消设置。
unset($_POST);
您似乎正在重新发送页面刷新时的表单数据。如果一旦您保存表单数据,就不要再将相同的表单呈现给视图。您必须通过检查数据是否已保存来防止它发生。如果保存成功,您还可以从表单视图重定向用户。