Next topic I would take is very easy one.but i thought it bcoz i have done very tinycode which is yet not seen by me.
Here I am giving you code to delete files from folder at once.
<?php
$dir='test';
foreach (glob($dir."/*") as $image)
{
unlink($image);
}
?>
Here $dir is variable where you can give directory which you want to make empty.
Try this out!! you will feel very happy!!
Here I am giving you code to delete files from folder at once.
<?php
$dir='test';
foreach (glob($dir."/*") as $image)
{
unlink($image);
}
?>
Here $dir is variable where you can give directory which you want to make empty.
Try this out!! you will feel very happy!!
No comments :
Post a Comment