반응형

if(is_array($goodsNo)){ //배열여부확인
            $bindQuery = null;
            foreach($goodsNo as $val){ //해당 값출력
                $bindQuery[] = '?'; //값 해열저장
                $this->db->bind_param_push($this->arrBind,'i',$val); //해당값 ?에 입력
            }
            $this->arrWhere[]  = " g.goodsNo in (".implode(',',$bindQuery).")"; //출력
        }

반응형
반응형

table or view does not exist

테이블이 없거나 지정한 테이블명이 틀릴경우 나타납니다.

 

반응형

+ Recent posts