Deleting a file????

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
terji
Forum Commoner
Posts: 37
Joined: Tue May 14, 2002 5:27 pm
Location: Denmark

Deleting a file????

Post by terji »

how do I delete images from my server???? :oops:

I've been trying several functions from my php manual, but I can't seem to get anything to work. Uploading works just fine, but deletion is seriously F***** up. :?
User avatar
haagen
Forum Commoner
Posts: 79
Joined: Thu Jul 11, 2002 3:57 pm
Location: Sweden, Lund

Post by haagen »

Try;

Code: Select all

unlink("filename");
Post Reply