我必须在 codeigniter 中使用 mysql 在字段中搜索多个值。下面是我的代码。
在控制器中
public function vpsearch()
{
$data['info'] = $this->psearch_m->emp_search_form();
$this->load->view("employer/result",$data);
}
型号
public function emp_search_form()
{
$skill = $this->security->xss_clean($this->input->post('ps_skills'));
$jrole = $this->input->post('ps_jobrole'));
if ( $jrole !== NULL)
{
return $this->db->get('js_edu_details');
$this->db->like('js_skills','$skill');
}
}
鉴于即(../employer/result)
foreach($info->result() as $row)
{
echo $row->js_id."<br/><br/>" ;
}
但是,我得到了“js_edu_details”表中的所有记录,而不是搜索“技能”的字段。
我哪里错了?感谢您的任何帮助,谢谢。