add sppd to git repo

This commit is contained in:
ryan
2025-10-09 13:13:09 +07:00
commit cc020ada92
1697 changed files with 394218 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?php
if(isset($_POST['file'])){
$file = '../uploads/' . $_POST['file'];
if(file_exists($file)){
unlink($file);
}
}
?>