Search This Blog

Wednesday, 21 January 2015

Delete file from folder in PHP.

use unlink() function



Example:

<?php



$delete_file="foldername/filename.gif";

unlink($delete_file);


?>

No comments:

Post a Comment