gpt4 book ai didi

php - 从文件中删除图像,同时删除 mysql 行

转载 作者:太空宇宙 更新时间:2023-11-03 11:05:21 25 4
gpt4 key购买 nike

我有一个管理面板,其中有一个页面允许管理员从数据库中删除行。他们可以删除的每一行都有一个关联的图像存储在服务器上的目录中。图像路径也存储在数据库中。

我需要的是当用户从表中删除一行时,我希望它也删除图像。

这是我从表中删除行的 PHP:

include('includes/temp.config.php'); 


if (isset($_GET['id']) && is_numeric($_GET['id']))
{
// get the 'id' variable from the URL
$id = $_GET['id'];

// delete record from database
if ($stmt = $link->prepare("DELETE FROM templates WHERE id = ? LIMIT 1"))
{
$stmt->bind_param("i",$id);
$stmt->execute();
$stmt->close();
}
else
{
echo "ERROR: could not prepare SQL statement.";
}
$link->close();

// redirect user after delete is successful
header("Location: edit.php");
}
else
// if the 'id' variable isn't set, redirect the user
{
header("Location: edit.php");
}

但我什至不知道从哪里开始删除关联的图像...任何帮助将不胜感激。

最佳答案

unlink怎么样?功能?

关于php - 从文件中删除图像,同时删除 mysql 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12291337/

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