how to Delete file form folder by php..by name which is written by user in html form (input) -
how delete file form folder php..by name written user in html form (input).please thanks..
unlink();
i'ts different files:
fom http://php.net/manual/en/function.rmdir.php
<?php if (!is_dir('examples')) { mkdir('examples'); } rmdir('examples'); ?>
you'll want pull $_post variable to, so:
<?php $folder = $_post['folder']; if (!is_dir($folder)) { rmdir($folder); } ?>
Comments
Post a Comment