如何设置LIKE子句CI

如何设置LIKE子句CI

控制器:

function search()
    {
        $this->load->model('membership_model');
        $query = $this->membership_model->search();
        var_dump($query->result());}


模型:

function search()
    {
    $match = $this->input->post('Search');
    $this->db->like('title',$match);
    $q = $this->db->get('feeds');
    return $q;
    }


我想从数据库中选择标题包含$ match的所有行,但它将返回所有行。我有一个输入表格,在其中插入单词。在模型中,我想在每个标题中搜索单词,并仅返回包含来自我的输入表单的单词的那些标题。
形成:

echo anchor('site/search','Search')."<br/><br/>";
    echo form_input('search','search');

最佳答案

我不太明白这个问题,但我认为这段代码就是您所需要的

模型:

function search($match){
    $this->db->like('title',$match);
    $q = $this->db->get('feeds');
    return $q->result();
}


控制器:

function search_title()
    {
        $this->load->model('membership_model');
        $search_value = $this->input->post('search');
        $this->data['title'] = $this->membership_model->search($search_value );
     }


视图:

 <table>
    <?php foreach($title as $value) : ?>
     <tr>
        <td> <?=$value->nameofcolumn; ?> </tr> //change the word nameofcolumn to the name of the column in your database what column you want to fetch
    </tr>
    <?php endforeach; ?>
  </table>

关于mysql - 如何设置LIKE子句CI,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22027381/

10-13 02:57