Upload multiple files in CodeIgniter

后端 未结 7 1028
谎友^
谎友^ 2020-11-27 18:35

In my CodeIgniter project I\'m uploading files during the project creation. Here\'s the uploading function:

function uploadFiles(){

     $this->load->         


        
7条回答
  •  被撕碎了的回忆
    2020-11-27 19:20

    I think you missed this:

    $config['file_name']     = 'somename_'.$i;
    $config['upload_path']   = './uploads/'.$projectName;
    ...
    

提交回复
热议问题