JavaScript / AJAX file upload
- Read more about JavaScript / AJAX file upload
- Log in to post comments
# add this code snipset to your homepage and customize path to upload.php![]()
var myDropzone = new Dropzone("#dropzone", {url: "upload.php"});
myDropzone.on("success", function(file) {
location.reload();
});
# create upload.php on your webserver
<?php
$DIR = "upload";
if(!empty($_FILES)) {
// move file to upload direct