PHP Tutorial: Unlink delete file
Jan 25, 2009 Basic PHP
Do you want to make a file manager system or something like that where you will be able to delete ftp/local server files directly from your browser? If so, unlink() function from php will help you to do that. Look:
<?php
unlink(“filename”);
?>
Read PHP Tutorial: Unlink delete file »
Tags: delete, file delete, php file detele, php remove file, php unlink, remove file, unlink

