我的表格中有一些列为id
,path
,file_type
,file_size
。现在我需要为特定id选择path
列,并获取变量的路径作为字符串。然后使用unlink()
我想使用存储在变量中的路径删除此文件。
因为我创建了两个类,但它在运行时显示了一些错误。任何帮助都会有所帮助。感谢
第一个php类
<?php
// Check if delete button active, start this
if(isset($_POST['delete'])&&isset($_POST['checkbox'])){
foreach ($_POST['checkbox'] as $del_id){
$del_id = (int)$del_id;
$res0=$obj->filedelete($del_id);
$res1=$obj->multidelete($del_id);
}
$arr =Array();
$arr=$del_id;
echo $del_id;
if($res1){
echo "<meta http-equiv=\"refresh\" content=\"0;URL=newdelete.php\">";
}
}
?>
第二个php类
function filedelete($del_id)
{
echo $q="select path from uploadnw where id='$del_id'";
//echo $q;
$result = $this->includedbcon($q);
echo $result;
return unlink("$result");
}
这就像我的表格
错误