1

它仅在单个单元格中显示一个数据。但我想要的只是循环它以显示我数据库中的所有数据

这是我在控制器中的一段代码。

function firstDebit(){
$series=$this->uri->segment(3); 
$this->jevReport_model->getfirstDebit($series);
$data['accountNames']=$this->jevReport_model->getfirstDebit($series);
$accountName=$data['accountNames']['accountName'];

$this->excel->setCellValue('b10',$accountName);

}

模型

function getfirstDebit($series) {
$this->db->select ( 'accountcode.accountName' );
$this->db->from ( 'accountcode' );
$this->db->join ( 'generalaccount ', 'generalaccount.AccountCode = accountcode.id');
$this->db->where ( 'generalaccount.Series', $series);
$this->db->where ( 'generalaccount.Account', 'debit');
$this->db->where ( 'generalaccount.Count', 1);
$query = $this->db->get();
return $query->row_array ();

}

这是我的代码的输出 在此处输入图像描述

但我想要的是这样

在此处输入图像描述

我真的需要帮助。谢谢你。

4

0 回答 0