我遇到了问题,我有一个"通知页面"和" read_notification page"。在通知时,显示所有通知,当用户点击"阅读"通知按钮,它发布" Notification_ID"到下一页,下一页抓住发布N_ID,搜索数据库并显示所选通知的摘要。
现在的问题是,当用户导航到某个其他页面(例如,用于exaple HOME)并在浏览器上按回按钮时(意味着跳回read_notification页面)浏览器显示错误:
确认表格重新提交
此网页需要您之前输入的数据才能正确显示。您可以再次发送此数据,但通过这样做,您将重复此页面之前执行的任何操作。 按重新加载按钮重新提交加载页面所需的数据。 ERR_CACHE_MISS
但我希望用户能够通过按下浏览器返回按钮再次进入read_notification页面!
我认为这是我应该处理的代码
Notification.php
// Notification page
| 1 | title 1 | [read more] //read more button post value N_ID = 1 in variable "POSTY"
| 2 | title 2 | [read more] //read more button post value N_ID = 2 in variable "POSTY"
Read_notification.php
//read page code
$value1 = $_POST['posty'];
$sql = " (fires sql query to find details of N_ID) ";
.
.
.
More processes based on n_id.
我认为如果我在代码中包含$ _POST,它会向我显示相同的错误,所以我正在寻找解决方法