Is it possible to upload a folder with a file input in the browser?
I searched and found out that this might be a browser limitation and that I might need to use a J
Please Try This for upload the folder :
$count = 0; if ($_SERVER['REQUEST_METHOD'] == 'POST'){ foreach ($_FILES['files']['name'] as $i => $name) { if (strlen($_FILES['files']['name'][$i]) > 1) { if (move_uploaded_file($_FILES['files']['tmp_name'][$i], 'folder/'.$name)) { $count++; } } } }
`