unlink() function - Delete a file
by Nirmala[ Edit ] 2010-01-30 14:55:43
Unlink
I want to delete file using PHP code. The below code will help you.
<?php
unlink(/images/rose.jpg);
?>
If you execute the above code the rose.jpg file under the images directory will be removed.