我有一个用户按钮,当使用下面的代码单击它时删除帖子。但是,用户必须刷新页面才能看到帖子已被删除。当用户使用标题方法点击删除按钮时,有没有办法强制页面刷新?我正在使用WordPress,并且标题已经通过模板发送,如果我尝试标题(javascript代码),我会收到标题已经发送的错误。
if(isset($_POST['remove'])){
$the_WID = $_POST['remove'];
$dlt = "DELETE FROM posts WHERE post.WID = :postWID";
$stmtdlt = $dbh->prepare($dlt);
$stmtdlt->bindParam(':postWID', $the_WID, PDO::PARAM_INT);
$stmtdlt->execute();
<form action="" method="post">
<button type="submit">Delete</button>
<input type="hidden" name="remove" value="<?php echo $resulting[post]; ?>">
</form>
答案 0 :(得分:0)
是肯定的。你可以在php中使用标题
示例:
header('Location: http://www.example.com/');