Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Total PHP:
Deleting files with PHP
Aug 06, 2008 @ 16:19:48

The Total PHP site has another introductory tutorial posted showing you how to correctly delete files in your PHP scripts.

Following our tutorials on uploading files and listing files, this tutorial will walk you through deleting files from a directory. This is done using the unlink() function.

Their example is pretty simple (as is the concept) - they show how to check to be sure that the file you want to remove isn't in use/open and then issue the unlink to remove it from the file system.

tagged: delete file upload list tutorial fopen unlink

Link:


Trending Topics: