Codeigniter: Image Upload
问题 I have a large form, and I just added an file input to allow users to upload an image. Here's the new HTML: <input type="file" name="file_1" /> <input type="text" name="image_description_1" class="text-input"/> Here's the new _submit function: if($this->CI->input->post('file_1')){ $config['overwrite'] = TRUE; $config['allowed_types'] = 'jpg|jpeg|gif|png'; $config['max_size'] = 2000; $config['upload_path'] = realpath(APPPATH . '../assets/uploads/avatars'); $this->CI->load->library('upload',