This tiny problem has ruined my day. I can't delete files by PHP unlink
function. I am creating PHP form to update and edit pdf files. Below is my piece of html form and PHP unlink
script.
HTML
<form method="post" action="#" enctype="multipart/form-data">
<input type="file" value="<?php echo $row['img']?>" name="image">
<input type="submit" name="update">
</form>
PHP
<?php
if(isset($_POST['update']) && ($_FILES['image']['name'])){
$image=$_POST['image'];
unlink('../pdf/services/'.$image);
}
?>
Try
$_FILES
. Something like$image = $_FILES['image'];
and then$imgname = $image['name'];
After that you can use
unlink();
as you wanted (unlink("../pdf/services".$imgname);
)Hope I helped, It worked after my tests!