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

Popular posts from this blog

c - Calling a function within a loop -

vb.net - Unbound DataGridView add row with checkbox error -

How i fill combobox items in Radgridview manually using in vb.net -