gpt4 book ai didi

php - delete.php 页面不删除数据库内容

转载 作者:太空宇宙 更新时间:2023-11-03 10:58:37 24 4
gpt4 key购买 nike

我已经在我的网站的管理方面工作了一段时间。

我已经成功地创建了一个添加页面来将项目添加到我在 mysql 中的 mobi 数据库中。

但是当添加一个 delete.php 页面时,它并不能很好地工作。

该页面加载并在下拉菜单中列出了数据库中我的所有文章,但是当我选择我不再需要的文章时,它会返回到页面上编码的索引,但检查我的网站它不会删除文章。

我的 DELETE.PHP 页面是这样的:

<?php

session_start();

include_once('../include/connection.php');
include_once('../include/article.php');

$article = new storearticle;

if (isset($_SESSION['logged_in'])) {
if (isset($_GET['title'])) {
$id = $_GET['title'];
$query = $pdo->prepare('DELETE FROM mobi WHERE promo_title = ?');
$query->bindValue(1, $title);
$query->execute();

header('Location: index.php');
}
$articles = $article->fetch_all();
?>
<html>
<head>
<title>Delete Article</title>
<link rel="stylesheet" href="../other.css" />
</head>

<body>
<div class="container">
<a href="index.php" id="logo"><b>&larr; Back</b></a>

<br />
<div align="center">
<h4>Select an article to delete:</h4>
<form action="delete.php" method="get">
<select onchange="this.form.submit();" name="title">
<?php foreach ($articles as $article){ ?>
<option value="<?php echo $article['promo_title']; ?>"><?php echo $article['promo_title']; ?></option>
<?php } ?>
</select>
</form>
</div>
</div>
</body>
</html>
<?php
} else {
header('Location: index.php');
}
?>

有人能看出我哪里错了吗?

如果您需要更多信息,请告诉我。

最佳答案

你分配 id 的方式是

$id = $_GET['title'];

然后您尝试通过 $title 获取它。我认为这是问题所在:)

关于php - delete.php 页面不删除数据库内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17947945/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com