Multiple image upload with CodeIgniter

后端 未结 4 1712
走了就别回头了
走了就别回头了 2020-11-27 04:02

I am new user to using code igniter in my project, I am facing one problem while uploading multiple files but the last one only insert to all image three images field.

4条回答
  •  难免孤独
    2020-11-27 04:54

    The problem is with the following line of code:

     //1
     //2
    //3
    

    These all three have same name.

    To solve this there are two ways:

    Give diff name to all 3 input type file

    Make a single input type file with its multiple file selection true and its name must be an array like:

    
    

    Make the following changes and try again.

提交回复
热议问题