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

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -