Multiple file upload in php

前端 未结 14 1853
轮回少年
轮回少年 2020-11-21 11:32

I want to upload multiple files and store them in a folder and get the path and store it in the database... Any good example you looked for doing multiple file upload...

14条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-21 12:03

    Multiple files can be selected and then uploaded using the

    The sample php script that does the uploading:

    
    Upload
    
    
    

    The selected files are received as an array with

    $_FILES['file']['name'][0] storing the name of first file.
    $_FILES['file']['name'][1] storing the name of second file.
    and so on.

提交回复
热议问题