我在数字市场上工作。我正在尝试制作一个删除按钮,它将从我的管理门户中删除产品。当我单击删除按钮时,它会将我重定向回产品页面,其中显示已删除但该行仍然存在。
<form action='delete.php?product_id="<?php echo $product_id; ?>"' method="post">
<input type="hidden" name="product_id" value="<?php echo $loadProduct['product_id']; ?>">
<button class="btn btn-sm btn-alt-danger" type="submit" name="DeleteProduct"><i class="fa fa-fw fa-times text-danger"></i></button
</form>
这是我的 delete.php 代码
<?php
require_once('../inc/config.php');
if(isset($_POST['DeleteProduct'])){
$product_id = $_GET['product_id'];
$result = $db->delete('DELETE FROM products WHERE product_id = ?', array($product_id));
if ($result) {
header('Location: products.php?action=deleted');
} else {
header('Location: products.php?error=notremoved');
}
}
?>
小怪兽爱吃肉