diff options
-rw-r--r-- | src/attachment_writer.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/attachment_writer.php b/src/attachment_writer.php new file mode 100644 index 0000000..ee638c7 --- /dev/null +++ b/src/attachment_writer.php @@ -0,0 +1,12 @@ +<?php + +if (!array_key_exists('password', $_POST)) { + die('No password given'); +} + +var_dump($_FILES); + + +} + +?> |