我正在处理codeigniter但无法为控制器

时间:2016-02-26 09:51:06

标签: php mysql json codeigniter

我想将消息发送给代理商,了解他的客户拥有的总属性,为此我要加入3个表。 我在代理人表中有代理人ID,在activity_search_log中有总属性。 所以我完成了如下的模型 我在模型中的代码是:

public function agentsjoin(){
    $this->db->select('*');
    $this->db->from('agents ');
    $this->db->sum('prop_nums')
    $this->db->limit (100);
    $query=$this->db->get();
    $list=$query->result();
    return $list;
}

在控制器中,我想要的设计代码无法写入:

foreach(agent)
    if(properties > 0)
        send message;
    else
        no props exist to send message;

0 个答案:

没有答案