patchcablemgr/assets/plugins/jquery.filer/php/remove_file.php
2020-11-22 22:50:42 +00:00

8 lines
139 B
PHP
Executable File

<?php
if(isset($_POST['file'])){
$file = '../uploads/' . $_POST['file'];
if(file_exists($file)){
unlink($file);
}
}
?>