【发布时间】:2016-02-04 18:07:48
【问题描述】:
我发现很多问题都有同样的错误。但是这些答案并没有清除我的错误,错误仍然存在
当我尝试上传图片时。这个错误来了
" 您没有选择要上传的文件 "
但是图片上传到了正确的位置 ..
控制器
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(); ?>
【问题讨论】:
-
请也添加您的视图文件。
-
You Did not select a file to upload不是 php 错误。
标签: php codeigniter file-upload upload