unlink() function - Delete a file - PHP Views : 264
Tagged in : PHP
0 0
Send mail
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.
By Nirmala, On - 2010-01-30



    Login to add Comments .