<input type="file" name="some-img">Copy after loginCopy after login
The form is submitted to the server, which is $_FILES["some-img"]
How to write it if
<input type="file" name="some-img[]" multiple>
is passed to the background?
The backend is PHP
<input type="file" name="some-img">
The form is submitted to the server, which is $_FILES["some-img"]
How to write it if
<input type="file" name="some-img[]" multiple>
is sent to the backend?
The background is PHP
HTML:
<input name="upload[]" type="file" multiple="multiple" />
PHP:
// Count # of uploaded files in array $total = count($_FILES['upload']['name']); // Loop through each file for($i=0; $i<$total; $i++) { //Get the temp file path $tmpFilePath = $_FILES['upload']['tmp_name'][$i]; //Make sure we have a filepath if ($tmpFilePath != ""){ //Setup our new file path $newFilePath = "./uploadFiles/" . $_FILES['upload']['name'][$i]; //Upload the file into the temp dir if(move_uploaded_file($tmpFilePath, $newFilePath)) { //Handle other code here } } }
var_dump($_FLIE);
Print the variable and see the structure to know how to accept it