การลบไฟล์รูปภาพในโฟเดอร์ บน server

<?php
header('Content-type: text/html; charset=utf-8');
include 'Connect.php';
$sql="SELECT filUpload FROM details WHERE d_id = '$id'"; //คิวรี่ข้อมูลออกมา
$resault = mysqli_query($conn, $sql);
$row = mysqli_fetch_array($resault, MYSQL_NUM);
$filename = $row[0];
@unlink('fileupload/'.$filename);  
$stsql ="Delete from details where d_id='$id' ";
$data = mysqli_query($conn,$stsql);
if($data){
  ?>
    <script>
      alert("ลบข้อมูลเสร็จสมบูรณ์")
      window.location = "index.php";
    </script>
    <?php
}else{
  ?>
    <script>
      alert("ลบข้อมูลผิดพลาด")
      window.location = "index.php";
    </script>
    <?php
}
mysqli_close($conn); 
?>

test ในเครื่องที่ยังไม่อัพขึ้น Server มันสามารถลบข้อมูล รวมทั้งไฟล์ที่อยู่ในโฟอร์ได้ แต่พอ upload ขึ้นบน server สามารถลบข้อมูลได้แต่ไฟล์ที่อัพโหลดไปในโฟล์เดอร์ไม่ลบ แก้ไขยังไงคะ รบกวนช่วยทีคะ
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่