CodeIgniter连接两个表

时间:2013-03-04 13:21:08

标签: php codeigniter join

我正在尝试使用CodeIgniter将两个表连接在一起。我使用CodeIgniter用户指南获取帮助。我有一些问题,只显示一个表的数据,我不知道为什么。有人可以帮助我吗?

这是我的代码:

控制器

function getall(){      
    $this->load->model('result_model');
    $data['query'] =
    $this->result_model->result_getall();
    $this->load->view('result_view', $data);
    }

模型

 function result_getall(){

    $this->db->select('*');
    $this->db->from('tblanswers');
    $this->db->join('credentials', 'tblanswers.answerid = credentials.cid', 'left'); 
    $query = $this->db->get();
    return $query->result();

    }

查看

    <div>    


 <?php foreach ($query as $row): ?>      
                     //tblanswers
                   <?php echo $row->answerA;?><br>
               <?php echo $row->answerB;?><br>
               <?php echo $row->answerC;?><br>
                   <?php echo $row->comment;?><br>
                  //credentials
                    <?php echo $row->name; ?>
         <?php endforeach; ?>  


   </div>

2 个答案:

答案 0 :(得分:2)

function result_getall(){

$this->db->select('tblanswers.*,credentials.*');
$this->db->from('tblanswers');
$this->db->join('credentials', 'tblanswers.answerid = credentials.cid', 'left'); 
$query = $this->db->get();
return $query->result();

}

答案 1 :(得分:2)

在控制器中尝试这个,看看结果是什么。另外,告诉我们你是否收到任何错误,并确保你的表中有数据:)。

<强>控制器

function getall(){      
    $this->load->model('result_model');
    $data['query'] =$this->result_model->result_getall();
    print_r($data['query']);
    die();
    $this->load->view('result_view', $data);
    }