I tried using the PHP unlink() function to delete away the specific document in the folder. But I keep getting this fail in return.
Code:
$Path = './doc/stuffs/sample.docx';
if (unlink($Path)) {
echo "success";
} else {
echo "fail";
}
Can someone help me with this?