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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?