使用两个输入字段仅使用CodeIgniter上传两个图像

时间:2015-10-31 07:54:52

标签: php codeigniter

控制器

<input id="file-0" name="filename" class="file" type="file" multiple="true" />

它工作正常,但只将一个文件名上传到数据库中。我必须再将一个图像上传到数据库中。但它不起作用。对于上传另一个图像该怎么做。

在我看来,我已经给出了两个输入字段<input id="file-0" name="filename1" class="file" type="file" multiple="true" />

{{1}}

4 个答案:

答案 0 :(得分:2)

  

谢谢你们。但我只是将代码更改为Controller,它对我有用。

public function insertDepartmentImage()
{
     $m = $_FILES['filename']['name'];      
     $n = $_FILES['filename1']['name']; 
    if ($m !== "")
    {
        $config['upload_path'] = './uploads/galleryImg';                        
        $config['log_threshold'] = 1;
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] = '100000'; // 0 = no file size limit
        $config['file_name']='smallImage';          
        $config['overwrite'] = false;
        $this->load->library('upload', $config);
         $this->upload->do_upload('filename');
         $upload_data = $this->upload->data();
         $file_name = $upload_data['file_name'];
 }          
 if ($n !== "")
    {
        $config['file_name']='bigImage';
        $config['upload_path'] = './uploads/galleryImg';             
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] = '100000'; // 0 = no file size limit           
        $config['overwrite'] = false;
        $this->load->library('upload', $config);
        $this->upload->do_upload('filename1');
        $upload_data = $this->upload->data();
        $file_name1 = $upload_data['file_name']; 
    } 


        $deptId = $this->input->post('deptId'); 
        $deptDetails = $this->input->post('deptDetails');
        $deptDetails1 = $this->input->post('deptDetails1');

        $this->Gallery_Model->insertDepartmentImage($deptId,$file_name,$file_name1,$deptDetails,$deptDetails1); 

}/* closed insertDepartmentImage*/      
  

视图

<input id="file-0" name="filename" class="file" type="file" multiple="true" />
<input id="file-0" name="filename1" class="file" type="file" multiple="true" />

答案 1 :(得分:0)

默认情况下,codeIgniter不支持多文件上传。因此,您可以使用此库CodeIgniter多个上载库

https://github.com/anuragrath/CodeIgniter-Multiple-File-Upload

答案 2 :(得分:0)

谢谢你们......我现在解决了我的问题......

这是我的代码,希望它可以帮助

public function dashboard_templatedefault(){

    $upload1 = $_FILES['upload1']['name'];
    $upload2 = $_FILES['upload2']['name'];
    $upload3 = $_FILES['upload3']['name'];
    $upload4 = $_FILES['upload4']['name'];
    $upload5 = $_FILES['upload5']['name'];
    $upload6 = $_FILES['upload6']['name'];
    $upload7 = $_FILES['upload7']['name'];
    $upload8 = $_FILES['upload8']['name'];

    if($upload1 !== ""){

        $config['upload_path'] = './upload/';                        
        $config['log_threshold'] = 1;
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] = '0'; // 0 = no file size limit
        $config['file_name']='upload1';          
        $config['overwrite'] = false;
         $this->load->library('upload', $config);
         $this->upload->do_upload('upload1');
         $upload_data = $this->upload->data();
         $file_name = $upload_data['file_name'];

    }
    if($upload2 !== ""){

        $config['file_name']='upload2';
        $config['upload_path'] = './upload/';             
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] = '0'; // 0 = no file size limit           
        $config['overwrite'] = false;
        $this->load->library('upload', $config);
        $this->upload->do_upload('upload2');
        $upload_data = $this->upload->data();
        $file_name1 = $upload_data['file_name'];

    }
    if($upload3 !== ""){

        $config['file_name']='upload3';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] ='jpg|png|jpeg|gif';
        $config['max_size'] = '0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload3');
        $upload_data = $this->upload->data();
        $file_name2 = $upload_data['file_name'];

    }
    if($upload4 !== ""){

        $config['file_name'] = 'upload4';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload4');
        $upload_data = $this->upload->data();
        $file_name3 = $upload_data['file_name'];

    }
    if($upload5 !== ""){

        $config['file_name'] = 'upload5';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload5');
        $upload_data = $this->upload->data();
        $file_name4 = $upload_data['file_name'];

    }
    if($upload6 !== ""){

        $config['file_name'] = 'upload6';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload6');
        $upload_data = $this->upload->data();
        $file_name5 = $upload_data['file_name'];

    }
    if($upload7 !== ""){

        $config['file_name'] = 'upload7';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload7');
        $upload_data = $this->upload->data();
        $file_name6 = $upload_data['file_name'];

    }
    if($upload8 !== ""){

        $config['file_name'] = 'upload8';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload8');
        $upload_data = $this->upload->data();
        $file_name7 = $upload_data['file_name'];

    }



    $this->form_validation->set_rules('name','','xss_clean');
    $this->form_validation->set_rules('occasion','','xss_clean');
    $this->form_validation->set_rules('party_date','','xss_clean');
    $this->form_validation->set_rules('location','','xss_clean');
    $this->form_validation->set_rules('upload1','','xss_clean');
    $this->form_validation->set_rules('upload2','','xss_clean');
    $this->form_validation->set_rules('upload3','','xss_clean');
    $this->form_validation->set_rules('upload4','','xss_clean');
    $this->form_validation->set_rules('upload5','','xss_clean');
    $this->form_validation->set_rules('upload6','','xss_clean');
    $this->form_validation->set_rules('upload7','','xss_clean');
    $this->form_validation->set_rules('upload8','','xss_clean');
        $this->form_validation->run();

            $template_name = $this->input->post('template_name');
            $name = $this->input->post('name');
            $occasion = $this->input->post('occasion');
            $party_date = $this->input->post('party_date');
            $location = $this->input->post('location');
            $created = date('h:m:s a m/d/y');
            $profile_id = $this->input->post('profile_id');
            $this->admin_model->dashboard_templatedefault($template_name,$name,$occasion,$party_date,$location,$created,$profile_id,$upload1,$upload2,$upload3,$upload4,$upload5,$upload6,$upload7,$upload8);



}

答案 3 :(得分:0)

你的代码似乎太长了试试这个

 public function insertDepartmentImage()
    {
         $upload1 = $_FILES['upload1']['name'];      
         $upload2 = $_FILES['upload2']['name'];

        $config = array(
                'upload_path' => './uploads/galleryImg/',
                'log_threshold' => 1,
                'allowed_types' => 'jpg|png|jpeg|gif',
                'max_size' => '0',
                'overwrite' => false
            );
    for($i = 1; $i<=2; $i++){
        if(!empty('$upload'.$i)){
                        $config['file_name']='upload'.$i;
                        $this->load->library('upload', $config);
                        $this->upload->do_upload('upload'.$i);
                        $upload_data = $this->upload->data();
                        $file_name = $upload_data['file_name'];
                    }
    }
        $deptId = $this->input->post('deptId'); 
        $deptDetails = $this->input->post('deptDetails');
        $deptDetails1 = $this->input->post('deptDetails1');

        $this->Gallery_Model->insertDepartmentImage($deptId,$file_name,$file_name1,$deptDetails,$deptDetails1);



    }