Multi file upload with PHP/Javascript and no flash

前端 未结 4 981
慢半拍i
慢半拍i 2021-02-10 14:35

I\'m trying to make a webpage that allows the uploading of multiple files at the same times. I will limit the file extensions to the most common images like JPG, JPEG, PNG and G

4条回答
  •  太阳男子
    2021-02-10 15:11

    You can keep adding 'file' inputs but use a name of something like 'upload[]'

    
    

    Then in $_FILES['upload'] you will have an array of files you can loop over like

    foreach ($_FILES['upload'] as $file) {
        echo $file['size'];
    }
    

提交回复
热议问题