├── LICENSE.md ├── .gitignore ├── screenshot.png ├── README.md ├── upload.php ├── index.html ├── style.css └── script.js /LICENSE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.esproj 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbstjn/DropFile.php/HEAD/screenshot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DropFile.php 2 | 3 | A quick and dirty file uploader. With a full page dropzone for easy Drag'n'Drop file uploads. Backend is handled by a PHP script. 4 | 5 |  6 | 7 | # Security Advise 8 | 9 | Make sure you wrap an authentication around DropFile.php interface! 10 | 11 | # License 12 | 13 | DropFile.php is licensed under MIT License -------------------------------------------------------------------------------- /upload.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |