Jump to content

How to use the unlink function?


Jurik

Recommended Posts

Hi

as long as you have permission to delete the file you can just call

[code]<?php
$filename = "/tmp/ictmovie.txt";
unlink($filename);
[/code]

From a web-page the user is something like "apache" or "www-data" so its not "root" therefore you may not have permission to delete the file if its owned by root. If you are running an MS server, im not suer how the persmissions work but you need to check in IIS or Apache (whatever your web-server is).

Cheers,
tdw
Im using windows and EasyPHP, its going to run off a local server its not going to be on the internet.

Will I need to set permissions then? Alsonin regards to the $filename = "/tmp/ictmovie.txt"; peice of code. I have the ictmovie.mov stored in a MYSQL database and when the user clicks deletes I want it to find the name of the file from the database, go to the fodler and delete it, is this possible with unlink?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.