|
发表于 2011-12-29 12:41:34
|
显示全部楼层
PHP复制代码 $result = $this->db->get('classify')->result_array();
for($i=0;$i<count($result);$i++){
$result1 = $this->db->get_where('links',array('classname'=>$result[$i]['classname'],'audit'=>1),1)->row_array();
echo $result['id'];
}
复制代码
参考CI的AR类
|
|