Hi,
how do I delete a file e.g 22.pdf from my server with php if the file is in an other directory
page layout: projects/backend/removeProjectData.php (this file deletes all my entries for the database and should also delete the related file)
public_files/22.pdf (the place where the file is located)
now I'm using the unlink('../../public_files/' . $fileName);
but this allways gives me an error that the file does not exist any ideas?
regards, Ken