I would like to delete a file that is found in my localhost.
localhost/project/folder/file_to_delete
I\'m using codeigniter for this.
Try this, this works for me:
unlink("./path/to/folder/file_name_do_delete");
for example: I put my file inside uploads folder which is outside the application folder and my file name is 123.jpg. So it should be like this:
unlink("./uploads/123.jpg");