2014-01-06 49 views
1

我有一個文本表單,可以工作,我有一個文件上傳表單,它使用codeigniter文檔中的確切示例工作,但我似乎無法將這兩個文件一起。無法上傳文件在codeigniter文本形式

我想要一個允許文本和文件上傳的表單。文本應該保存在數據庫中,並保存到filepath

+3

請把你的代碼在你的問題。 –

+1

顯示我們已經嘗試過的代碼。 – Phlume

+0

你試過了什麼。顯示一些代碼。 – user2936213

回答

0

表單,你需要:

<?php echo form_open_multipart('upload/do_upload');?> 
    Text: <input type="text" name="usertext" size="20" /> 
    <br /><br /> 
    File: <input type="file" name="userfile" size="20" /> 
    <br /><br /> 
    <input type="submit" value="upload" /> 
<?php echo form_close();?> 

在上傳控制器:

function do_upload() 
{ 
    $config['upload_path'] = './uploads/'; 
    $config['allowed_types'] = 'gif|jpg|png'; 
    $config['max_size'] = '100'; 
    $config['max_width'] = '1024'; 
    $config['max_height'] = '768'; 
    $this->load->library('upload', $config); 
    if (! $this->upload->do_upload('userfile')) 
    { 
     $error = array('error' => $this->upload->display_errors()); 
     // upload error area 
    } 
    else 
    { 
     $data = array('upload_data' => $this->upload->data()); 
     //upload success area 

     $userfile = $upload_data['file_name']; // the uploaded file name 

     $usertext = $this->input->post('usertext'); // the text from form 

     // Here you can insert the value of $usertext to db 

    } 
} 
+0

tnqs ..這是我想要的一個.. – user3026905