I'm trying to delete selected images on the server using Codeigniter. Here is the code in my controller:
$photos = $this->input->post('photograph');
foreach ($photos as $photo) {
echo 'photo: '.$photo.'<br />';
if (unlink('./uploads/'.$photo)) {;
echo 'success!';
}
else {
echo "error deleting file.";
}
}
Here is what's happening:
- I'll select a file in the form, click delete, and I get the "success!" message from the controller.
- However, when I check the server, the image is still there.
- If I select the same file again, click delete, I get the error message, along with the PHP error message:
unlink(./uploads/path/to/file) [function.unlink]: No such file or directory.
Can anyone tell me what's going on here? My understanding was that unlink() is supposed to delete files, but that doesn't appear to be happening here.
$photo? Have you tried an absolute path? – Jrod Oct 31 '12 at 15:14