PHP Tutorial: Unlink delete file

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 »