duangongqiong6958 2019-02-21 04:41
浏览 34
已采纳

如何在Codeigniter中搜索数据后检索数据并在文本区域中显示

I am new to Codeigniter. I would like to create a module that after search the id, than it will retrieve data from the database and display the data in the textarea. I have no idea that how to retrieve data from database, and display the data in the textarea after click the 'Search' button. Hope someone can help me. Thank You.

This is the Model:

function search($code){
   $this->db->select('name','telno','address','introducer');
   $this->db->from('customer');
   $this->db->like('code',$code);
   $query = $this->db->get();
   if($query->num_rows() > 0){
    return $query->result();
   }else{
    return $query->result();
   }
}

This is the Controller:

public function searchcus(){ 
    $this->load->model('Ordering_model');
    $pgcode = $this->input->post('search');
    if(isset($code) && !empty($code)){
        $data['customer'] = $this->Ordering_model->search($code);
        $this->load->view('ordering/index',$data);
    }else{
        redirect($this->index());
    }
}

This is the View:

<div class="container">
            <div class="col-md-6">
                <div class="form-group">
                    <div class="col-md-9">
                            <input type="text" class="form-control" name="search" id="search" placeholder="<?php echo "Customer's PG Code";?> " required />
                    </div>
                    <span class="input-group-btn">
                        <button class="btn btn-default" type="submit" name="submit" value="Search" ><span class="glyphicon glyphicon-search"><?php echo "Search"; ?></span></button>
                    </span>
                    </div>
            </div>
            </form><br/>
    </div>
    <table style="width: 2000px;" class="table table-striped">
                 <div class="col-xs-4">
                    <div class="input-group">
                    <span class="input-group-addon">Name</span>
                    <input id="msg" type="text" class="form-control" name="msg" >
                    </div>
                </div>
                <br><br>
                <div class="col-xs-4">
                <div class="input-group">
                    <span class="input-group-addon">Tel</span>
                    <input id="msg" type="text" class="form-control" name="msg" >
                </div>
                </div>
                <br><br>
                <div class="col-xs-4">
                <div class="input-group">
                    <span class="input-group-addon">Introducer</span>
                    <input id="msg" type="text" class="form-control" name="msg" >
                </div>
                </div>
                <br><br>
                <div class="col-xs-4">
                <div class="input-group">
                    <span class="input-group-addon">Address</span>
                    <textarea class="form-control" rows="5" id="address"></textarea>
                </div>
                </div>
                <br>


    </table>
  • 写回答

3条回答 默认 最新

  • doukan4039 2019-02-21 11:19
    关注

    Use the following code. It works...

    Controller:

     public function searchcus() {
            $pgcode = $this->input->post('search');
            if (isset($pgcode) && !empty($pgcode)) {
                $data['customerr'] = $this->Ordering_model->search($pgcode);
                $this->load->view('viewpage', $data);
            } else {
                redirect($this->index());
            }
        }
    

    Model:

       function search($pgcode) {
            $this->db->select('*');
            $this->db->from('customer');
            $this->db->like('code',$pgcode);
            return $this->db->get()->result();
        }
    

    View page:

    <div class="container">
        <form method="post" action="<?php echo base_url(); ?>index.php/welcome/searchcus">
                <div class="col-md-6">
                    <div class="form-group">
                        <div class="col-md-9">
                                <input type="text" class="form-control" name="search" id="search" placeholder="<?php echo "Customer's PG Code";?> " required />
                        </div>
                        <span class="input-group-btn">
                            <button class="btn btn-default" type="submit" name="submit" value="Search" ><span class="glyphicon glyphicon-search"><?php echo "Search"; ?></span></button>
                        </span>
                        </div>
                </div>
                </form><br/>
        </div>
    <?php if(empty($customerr)) { } else { foreach($customerr as $row) { ?>
        <table style="width: 2000px;" class="table table-striped">
                     <div class="col-xs-4">
                        <div class="input-group">
                        <span class="input-group-addon">Name</span>
                        <input id="msg" type="text" class="form-control" name="msg" value="<?php echo $row->name ?>" >
                        </div>
                    </div>
                    <br><br>
                    <div class="col-xs-4">
                    <div class="input-group">
                        <span class="input-group-addon">Tel</span>
                        <input id="msg" type="text" class="form-control" name="msg" value="<?php echo $row->telno ?>" >
                    </div>
                    </div>
                    <br><br>
                    <div class="col-xs-4">
                    <div class="input-group">
                        <span class="input-group-addon">Introducer</span>
                        <input id="msg" type="text" class="form-control" name="msg" value="<?php echo $row->introducer ?>" >
                    </div>
                    </div>
                    <br><br>
                    <div class="col-xs-4">
                    <div class="input-group">
                        <span class="input-group-addon">Address</span>
                        <textarea class="form-control" rows="5" id="address"> <?php echo $row->address ?></textarea>
                    </div>
                    </div>
                    <br>
    
    
        </table>
    <?php } } ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 怎么把512还原为520格式
  • ¥15 MATLAB的动态模态分解出现错误,以CFX非定常模拟结果为快照
  • ¥15 求高通平台Softsim调试经验
  • ¥15 canal如何实现将mysql多张表(月表)采集入库到目标表中(一张表)?
  • ¥15 wpf ScrollViewer实现冻结左侧宽度w范围内的视图
  • ¥15 栅极驱动低侧烧毁MOSFET
  • ¥30 写segy数据时出错3
  • ¥100 linux下qt运行QCefView demo报错
  • ¥50 F1C100S下的红外解码IR_RX驱动问题
  • ¥20 基于matlab的航迹融合 航迹关联 航迹插补