first commit
This commit is contained in:
8
plugins/jquery.filer/php/remove_file.php
Normal file
8
plugins/jquery.filer/php/remove_file.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
if(isset($_POST['file'])){
|
||||
$file = '../uploads/' . $_POST['file'];
|
||||
if(file_exists($file)){
|
||||
unlink($file);
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user