dongpiao0731 2017-05-09 08:00
浏览 53

如何在codeigniter中将上传图像名称插入数据库

My image is upload into the respective folder and I try to save it name to database but still can and error occur

public function add_posts() {

                $this->load->helper('form');
                $this->load->library('form_validation');
                $this->form_validation->set_rules('title','Title','required');
                if($this->form_validation->run() === FALSE) {
                     $this->load->view('posts/add');
                }
                else {
                    $this->load->model('Posts_Model');
                    $data = array(
                        'title' => $this->input->post('title'),
                        'body' => $this->input->post('body'),
                        'cover' => $this->input->post('cover'));
                        //---image upload ---//
                        $config['upload_path']          = './uploads/';
                        $config['allowed_types']        = 'gif|jpg|png';

                        $this->load->library('upload', $config);
                        if ( ! $this->upload->do_upload('cover')) {
                            $error = array('error' => $this->upload->display_errors());
                            $this->load->view('posts/add', $error);
                        } else {
                            $data =  $this->upload->data();
                            $cover = $data['file_name'];
                            $data['cover'] = $cover;
                        }

                        //---End image upload---//
                    $this->Posts_Model->insert($data);

                    $query = $this->db->get("posts");
                    $data['records'] = $query->result();
                    $this->load->view('posts/index',$data);
                }

            }

Here is my function in my controller only the name of image (cover) can't insert into database and other work respectively. The Database Error Occur

A Database Error Occurred

Error Number: 1054

Unknown column 'file_name' in 'field list'

INSERT INTO `posts` (`file_name`, `file_type`, `file_path`, `full_path`, `raw_name`, `orig_name`, `client_name`, `file_ext`, `file_size`, `is_image`, `image_width`, `image_height`, `image_type`, `image_size_str`, `cover`) VALUES ('la.jpg', 'image/jpeg', '/vagrant/uploads/', '/vagrant/uploads/la.jpg', 'la', 'la.jpg', 'la.jpg', '.jpg', 22.38, 1, 1200, 700, 'jpeg', 'width=\"1200\" height=\"700\"', 'la.jpg')

Filename: models/Posts_Model.php

Line Number: 8

  • 写回答

1条回答 默认 最新

  • dpwdldgn43486 2017-05-09 08:41
    关注

    double check your table 'post', and see if file_name field exist in the table,

    评论

报告相同问题?

悬赏问题

  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等
  • ¥15 matlab 用yalmip搭建模型,cplex求解,线性化处理的方法
  • ¥15 qt6.6.3 基于百度云的语音识别 不会改
  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥20 测距传感器数据手册i2c