Files
Labchain/delete.php
2021-12-20 09:55:27 +01:00

6 lines
77 B
PHP

<?php
$t= $_POST['name'];
echo $t;
unlink('/var/www/html/uploads/' .$t);
?>