我發現這麼多問題都有同樣的錯誤。但這些答案並沒有清除我的錯誤,仍然錯誤仍然您沒有選擇一個文件上傳。但圖像上傳
當我嘗試上傳圖像。這個錯誤出現
「沒有選擇要上傳的文件」
但圖像在正確的位置上傳..
控制器
class image extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->helper(array('form', 'url'));
$this->load->library('session');
$this->load->library('layout');
$this->load->model('admin_m');
$this->load->library('upload');
}
function projects_more() {
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100000';
$config['max_width'] = '102400';
$config['max_height'] = '76800';
$this->load->library('upload', $config);
$this->upload->initialize($config);
if (!$this->upload->do_upload('photo')) {
$error = array('error' => $this->upload->display_errors());
$this->layout->view('home_page', $error);
} else {
$data = array('upload_data' => $this->upload->data());
$data1 = $this->upload->data();
$image = $data1['file_name'];
$project = $this->input->post('project');
$content= $this->input->post('content');
$this->admin_m->projects_more($image,$project,$content);
redirect('image/projects_more');
}
}
}
我的看法頁面
projects1.php
<?php echo form_open_multipart('image/projects_more'); ?>
<table>
<tr>
<td><input type="file" name="photo" id="photo" size="20"></td>
</tr>
</table>
<input type="submit" name="submit" value="Submit">
<?php echo form_close(); ?>
請將您的視圖文件了。 –
'你沒有選擇一個文件上傳'不是一個PHP錯誤。 –