我有一个带有表单的index.php。
<form id="order" method="post" action="">
在同一页面上,我有一些复选框:
<input type="checkbox" name="price0" id="price0" <?php echo $price0 ?> onchange="this.form.submit();">
当有人点击某个链接并使用后退按钮时,Firefox会显示“文档已过期”错误。我怎样才能轻松解决这个问题?
使用后退按钮时有没有办法清除$ POST值? 或者有没有办法将后退按钮重定向到index.php?但只有后退按钮。在点击我需要$ POST数据来过滤网站内容。