duanhe1976 2018-06-13 14:15
浏览 41
已采纳

如何使用字段代码Codeigniter将图像添加到表单中

I am new to Codeigniter and new to the MVC webdesign, i have plant insert form i want to upload image and save image name into database i tried many codes but not works please help me to write upload function

plant insert form is below here

    <?php echo validation_errors(); ?>
    <?php echo form_open('AddPlant/InsertPlant')?>
        <div class="form-group has-error">
            <label for="name">Name <span class="require">*</span></label>
            <input type="text" class="form-control" name="name" />
        </div>

        <div class="form-group">
            <label for="description">Description</label>
            <textarea rows="5" class="form-control" name="description" > 
        </textarea>
        </div>
        <div class="form-group required">
           <label for="exampleSelect1" class='control-label'>Job Type</label>
           <select class="form-control" id="age" name="age">
            <option value="1">Level 1</option>
            <option value="2">Level 2</option>
            <option value="3">Level 3</option>
           </select>
        </div>
        <div class="form-group">
            <p><span class="require">*</span> - required fields</p>
        </div>
        <div class="form-group">
            <label for="description">Plant Image</label>
            <input type="file" name="plantimg">
        </div>
        <div class="form-group">
            <button type="submit" class="btn btn-primary">
                Create
            </button>
            <button class="btn btn-default">
                Cancel
            </button>
        </div>

    <?php echo form_close();?>

My Codeigniter model

       <?php
       class Model_plants extends CI_Model
       {

     function insertPlantData(){

    $data =array(

        'name'=> $this->input->post('name',TRUE),
        'description'=> $this->input->post('description',TRUE),
         'age'=> $this->input->post('age',TRUE),

    );
    return $this->db->insert('plants',$data);
}
}
  • 写回答

1条回答 默认 最新

  • dpn517111 2018-06-13 15:01
    关注

    Hope this will help you :

    Note : make sure you have load database and upload library either in autoload or in controller

    First your form should be like this :

    <?php echo form_open_multipart('AddPlant/InsertPlant')?>
        ............
     <?php echo form_close();?>
    

    Your controller should be like this :

    public function InsertPlant()
    {
        /*here make sure your path is correct*/
        $config['upload_path']          = FCPATH .'assets/uploads/';
        $config['allowed_types']        = '*';
    
        $this->load->library('upload', $config);
    
        if ( ! $this->upload->do_upload('plantimg'))
        {
            $error = array('error' => $this->upload->display_errors());
            print_r($error);die;
        }
        else
        {
            //$data = array('upload_data' => $this->upload->data());
            $file_name = $this->upload->data('file_name');
            /*here assuming that your column name for image is image_name, change it not*/
            $data =array(
                    'name'=> $this->input->post('name',TRUE),
                    'description'=> $this->input->post('description',TRUE),
                    'age'=> $this->input->post('age',TRUE),
                    'image_name'=> $file_name,
            );
            return $this->db->insert('plants',$data);
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 linux驱动,linux应用,多线程
  • ¥20 我要一个分身加定位两个功能的安卓app
  • ¥15 基于FOC驱动器,如何实现卡丁车下坡无阻力的遛坡的效果
  • ¥15 IAR程序莫名变量多重定义
  • ¥15 (标签-UDP|关键词-client)
  • ¥15 关于库卡officelite无法与虚拟机通讯的问题
  • ¥15 目标检测项目无法读取视频
  • ¥15 GEO datasets中基因芯片数据仅仅提供了normalized signal如何进行差异分析
  • ¥100 求采集电商背景音乐的方法
  • ¥15 数学建模竞赛求指导帮助