如何将查询结果作为字符串输入到php中的变量?

时间:2013-07-27 06:21:02

标签: php mysql unlink

我的表格中有一些列为idpathfile_typefile_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");
}

这就像我的表格

enter image description here

错误 enter image description here

0 个答案:

没有答案