gpt4 book ai didi

php - 如何从 PHP 文件夹中删除图像并从 phpMyAdmin 中删除文件名?

转载 作者:行者123 更新时间:2023-12-02 03:59:18 24 4
gpt4 key购买 nike

我是 PHP 初学者,我需要做的是从我的上传文件夹中删除以及从 phpMyAdmin 数据库中删除一行信息。我知道我必须实现取消链接,但我不确定如何将其放入我的代码中。任何帮助,将不胜感激。谢谢。

$dbc = mysqli_connect('localhost', 'root', 'root', 'myimages');

$files = glob("uploads/*.*");

if (isset($_GET['id']) && is_numeric($_GET['id']) ) {

$query = "SELECT title FROM imagedata WHERE id={$_GET['id']}";

if ($r = mysqli_query($dbc, $query)) {
$row = mysqli_fetch_array($r);

print '<form action="delete_image.php" method="post">
<p style="color: red;">Are you sure you want to delete this image?</p>
<p><h4>' . $row['title'] . '</h4><br>
<input type="hidden" name="id" value="' . $_GET['id'] . '">
<input type="submit" name="submit" value="Delete this image"></p>
</form>';
} else {
print '<p style="color: red;">Could not retrieve the image because:<br>' . mysqli_error($dbc) . '.</p><p>The query being run was: ' . $query . '</p>';
}

} elseif (isset($_POST['id']) && is_numeric($_POST['id'])) {

$query = "DELETE FROM imagedata WHERE id={$_POST['id']} LIMIT 1";
$r = mysqli_query($dbc, $query);

if (mysqli_affected_rows($dbc) == 1) {
print '<p>The image has been deleted.</p>';
} else {
print '<p style="color: red;">Could not delete the image because:<br>' . mysqli_error($dbc) . '.</p><p>The query being run was: ' . $query . '</p>';
}

} else {
print '<p style="color: red;">This page has been accessed in error.</p>';
}

mysqli_close($dbc);

最佳答案

您使用什么列名来存储文件路径?您需要在第一个查询中检索此内容:

$query = "从图像数据中选择标题,其中 id={$_GET['id']}";

变成:

$query = "从图像数据中选择标题、路径,其中 id={$_GET['id']}";

然后您可以在数据库查询上方使用unlink():

unlink( $row['path'] ); // if you store full path + filename
unlink( '/path/to/your/uploads/folder/here/' . $row['path'] ); // if you store just the file name and not folder
$query = "DELETE FROM imagedata WHERE id={$_POST['id']} LIMIT 1";
$r = mysqli_query($dbc, $query);

关于php - 如何从 PHP 文件夹中删除图像并从 phpMyAdmin 中删除文件名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42562986/

24 4 0
文章推荐: firebase - Firebase 控制台中的实时数据库未加载数据
文章推荐: nginx 上游配置在单独的文件中
文章推荐: c# - 仅在需要时将对象包装到任务