我的 codeigniter 的视图文件中有以下代码。
<?php foreach ($records as $rows){?>
<? echo $rows['product_name']; ?> <br>
<? } ?>
我的模型
$this->db->select('*');
$this->db->from('products');
$this->db->order_by('product_name','ASC');
$getData = $this->db->get('');
if($getData->num_rows() > 0)
return $getData->result_array();
else
return null;
如果我运行上面的代码,我会得到以下结果
Pepsi
Coke
Mountain Dew
我试图只显示第一个结果(百事可乐)。你能告诉我怎么做吗?