使用codeigniter从表中进行条件选择

时间:2017-04-07 15:48:19

标签: php mysql codeigniter fetch

我试图制作一个仅显示某些信息的选择(条件选择)。

我的意思是,这是我的表" usuarios":

  

" USUARIOS"包括:的(ID,用户名,名,姓,密码,类型,状态,日期)

看看:

enter image description here

我的目标是制作一个只显示"类型"的用户的选择= 1 AND"状态" = 1

看看:

enter image description here

我完成了一个选择,但它显示了每个用户名,但它没有验证任何内容:/。

我的程序显示了这一点,但它不正确,因为它不验证任何内容:/

enter image description here

这是我的代码:

我的控制器文件:

    public function edit($ID){

  $data['usuarios'] = $this->Crudmodel->get_usuarios();
  $data['record']=$this->Crudmodel->get_id_row($ID);
  $this->load->view('edit',$data);

}

我的模特档案:

          public function get_usuarios() {
         $this->db->select('c.*')
             ->from('usuarios c');

       $q = $this->db->get();

          return $q->result();
}

我的"编辑"文件:

    <h2 align="center">UPDATE</h2>
<form method="post" action='<?php echo site_url('Home/saveupdate'); ?>'>
<tr>

    <td><input type="text" hidden name="txtid" value="<?php echo $record->id ?>"/></td>

</tr>
<tr>

    <td>
        <select name="txtcarr">
            <?php foreach($usuarios as $item):?>
            <option value="<?php echo $item->id;?>"><?php echo $item->username;?></option>
             <?php endforeach;?>
        </select>
    </td>
</tr>


<tr>

    <td></td>
    <td><input type="submit" value="Save"/></td>

</tr>

不知道该做什么:/

1 个答案:

答案 0 :(得分:0)

为什么不选择你想要的行?如果你把它放在你的模型中,它会像你期望的那样工作吗?

public function get_usuarios() {
   $this->db->select('id, username')
        ->from('usuarios')
        ->where(array('status'=>1, 'type'=>1));

   $q = $this->db->get();
   return $q->result();
}