【发布时间】:2018-02-06 12:21:12
【问题描述】:
我是 CodeIgniter 的新手。我已从一个表中检索数据,但无法从另一表中检索数据。视图部分不起作用。由于某种原因,PDF 显示为空白(使用 tcpdf)。我们可以将它作为数组获取吗?如果是,那么我们如何将它作为数组获取?某些数据似乎打印在我按下的按钮下方。它不会显示在我们单击按钮后生成的 pdf 上。
代码:
控制器
index(){
$this->load->database();
//load the model
$this->load->model('Order_model');
//load the method of model
$data['h']=$this->Order_model->select();
//return the data in view
$this->load->view('includes/orderPdf', $data);
}
型号
public function select()
{
//data is retrive from this query
$query = $this->db->get('master_user');
return $query;
}
查看
<?php
foreach ($h->result() as $row)
{
?><tr>
<td><?php echo $row->mobile_no ?></td>
<td><?php echo $row->country ?></td>
</tr>
<?php }
?>
【问题讨论】:
-
var_dump($h)in view. 你看到了什么? -
nothing.它仍然是空白的,没有以pdf的形式打开
标签: php codeigniter