阻止在点击后退按钮时重新提交表单
我在这里和其他地方搜索了许多帖子,但似乎找不到解决我的问题的方法。我有一个显示数据库条目的页面:数据库.php。可以使用表单筛选这些条目。当我过滤它们并仅显示我感兴趣的条目时,我可以单击一个条目(作为链接),它将我带到该条目页面(通过php GET)。当我在该条目页面(即“查看.php?id=1”)并点击后退按钮(返回数据库.php)时,过滤表单需要确认表单重新提交。有什么办法可以防止这种情况吗?
以下是一些(简化的)代码示例:
数据库.php:
<form>
<select>
<option>1</option>
<option>2
<option>
</select>
<input type="submit" name="apply_filter" />
</form>
<?php
if ( isset( $_POST[ "apply_filter" ] ) ) { // display filtered entries
$filter = $_POST[ "filter" ];
$q = "Select * from table where col = '" . $filter . "'";
$r = mysql_query( $q );
} else { // display all entries
$q = "Select * from table";
$r = mysql_query( $q );
}
while ( $rec = mysql_fetch_assoc( $r ) ) {
echo "<a href='view.php?id=" . $rec[ "id" ] . "'>" . $rec[ "name" ] . "</a><br />"; // this is where the link to the view.php page is...
}
?>
现在如前所述,如果我点击链接,它会带我“查看.php?id=whatever”。在该页面上,我只从URL中获取ID以显示该单个条目:
视图.php:
<?php
$id = $_GET[ "id" ];
$q = "Select * from table where id = '" . $id . "'";
$r = mysql_query( $q );
while ( ) {
// display entry
}
?>
如果我现在点击后退按钮,数据库.php上的表单(用于过滤数据库结果的表单)需要确认才能重新提交。这不仅很烦人,对我来说也没用。
我该如何解决这个问题?我希望代码示例和我的问题的解释是足够的。如果没有让我知道,我会尝试指定。