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.
我有一个 HTML 表,其中每一行都有一个数据库记录列表,并且每个人都有一个表单,其中包含使用其提交按钮(方法 POST)删除数据库中的记录所需的信息。
所以我从全局变量 $_POST 中获取值。我的问题是,当我单击任何这些提交按钮时,它会引发级联或递归删除,并且所有记录都被删除。
我一直在谷歌搜索,但我没有找到任何东西。我看到了类似 unset($_POST['myvar']) 的代码,但它不起作用。
我该如何解决这个问题?
问候, oggie0563
这是一个 PRG 问题。我找到了这个,
php-postredirectget 类
也许这已经足够了。