aboutsummaryrefslogtreecommitdiffstats
path: root/php
diff options
context:
space:
mode:
Diffstat (limited to 'php')
-rw-r--r--php/readdir.php3
-rw-r--r--php/upload.php2
2 files changed, 3 insertions, 2 deletions
diff --git a/php/readdir.php b/php/readdir.php
index e69de29..b6a1916 100644
--- a/php/readdir.php
+++ b/php/readdir.php
@@ -0,0 +1,3 @@
+<?php
+echo '[ { "name": "file1.txt", "mimetype": "text/plain", "is_directory": false }, { "name": "file2.pdf", "mimetype": "application/pdf", "is_directory": false }, { "name": "dir", "mimetype": "", "is_directory": true } ] ';
+?>
diff --git a/php/upload.php b/php/upload.php
index 0aefefc..01ab6a6 100644
--- a/php/upload.php
+++ b/php/upload.php
@@ -9,8 +9,6 @@ if (!isset( $_POST["filename"]) || !isset($_FILES["the_file"]))
exit(1);
}
-echo "adsf";
-
$file = $_FILES["the_file"];
$filename= $_POST["filename"];