php mysqlのどこにあるのか緊急に質問しています
それを見つけるのを手伝ってください
$select = $this->gt;db->select();
$select->from(PREFIX . $ this->_table.' as ', '*');
$select->where($this->db->quoteInto('s.parent_category_id=?',$param-> ; Goods_category_id));
if($param->display_order){
$select->where($this->db->quoteInfo('s.type_id in(1,2,3 , 4)')); この行の何が問題なのかわかりません
$select->where($this->db->quoteInfo('s.display_order=?',$param-> ;display_order) );
}
初心者の方、よろしくお願いします
------解決策----------------- ---
$select->where($this->db->quoteInfo('s.type_id in(?)'), array(1,2,3,4));試してみる