PHP Multiple File Array

前端 未结 6 1217
陌清茗
陌清茗 2020-12-03 09:29

I have the following code which works and uploads but it will not cycle through the array to upload every file, just the first file.

6条回答
  •  时光说笑
    2020-12-03 09:37

    File upload using multiple input fields.

    HTML

    
              

    PHP

    ";
            } else {
                echo "move_uploaded_file function failed for ".$name_array[$i]."
    "; } } } ?>

提交回复
热议问题