PHP Upload multiple files only upload 1 file

前端 未结 5 1678
囚心锁ツ
囚心锁ツ 2021-01-15 04:50

i edited this code alot of times (im noob whit php) and my problem is upload multiples files with this code. i can upload only 1 file.

Here

5条回答
  •  被撕碎了的回忆
    2021-01-15 05:23

    my suggestion is

    1. Start a loop: foreach ($_FILES[$file_field] as $file) { where you have // Get filename string
    2. Close it with } in the end of the function
    3. Change all $_FILES[$file_field] to $file inside it

    And, of course, input must have multiple attribute as Sherin Jose said (tut), but now it's fully supported only by 8.27% of browsers, so you'd better add more inputs with JS, like

    
    
    ...
    

    and loop them in the same way

提交回复
热议问题