首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

急求php mysql中where的有关问题

2012-08-16 
急求php mysql中where的问题请各位大侠帮我看看$select $this-db-select()$select-from(PREFIX . $t

急求php mysql中where的问题
请各位大侠帮我看看
$select = $this->db->select();
$select->from(PREFIX . $this->_table.' as s', '*');
$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));试一试

热点排行