문제

I want to use where_in() method as codeigniter , I tried to define it but not working correctly.please help. I added this code in grocery crud library

 public function where_in($key = NULL, $values = array())
    {
             $this->where_in[] =array($key, $values);
        return $this;
    }

no errors but no result also.

도움이 되었습니까?

해결책

Thank You M khalid Junaid.

where() use as where_in()

I have used where and works fine.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top