first commit

This commit is contained in:
root
2024-08-13 05:44:19 +00:00
commit 2b7abf23e8
2299 changed files with 379710 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
$id=$_POST['id'];
$files=glob($id.'/*.docx');
foreach ($files as $file) {
if (is_file($file))
unlink($file);
}
rmdir($id);
?>