6 lines
77 B
PHP
6 lines
77 B
PHP
<?php
|
|
$t= $_POST['name'];
|
|
echo $t;
|
|
|
|
unlink('/var/www/html/uploads/' .$t);
|
|
?>
|