我使用PHP创建RESTFUL API,我想要做的是获取图像链接并从文件夹和表中删除它,
代码工作正常,它从文件夹中删除图像并将其从表中删除但是它显示了这个错误,我不知道为什么。
未定义的变量:res在在线 314
这是API的代码:
$id = $_GET['id'];
$query1 = "SELECT image_ser from etservice WHERE id_service='$id'";
$result2 = $db->query($query1);
if (mysqli_num_rows($result2) > 0) {
$res = array();
$res = $result2->fetch_all(MYSQLI_ASSOC);
}
unlink(($res[0]["image_ser"]));
$query = "DELETE FROM etservice WHERE id_service='$id'";
$result = $db->query($query);
if ($result == true && $result2 == true) {
echo('success');
} else {
$db->error;
}
break;
如果有人能提供帮助,我将非常感激。