模型
$data = array();
$session_id = $this->session->userdata('id');
$q = $this->db->get_where('cust_orders', array('cust_id' => $id));
foreach ($q->result() as $row)
{
$data['id'] = $row->cust_id;
$data['orders'] = $row->cart;
}
return $data;
控制器
传递data
给视图
看法
<?php foreach($_orders as $key => $item) : ?>
<tr>
<td>
<?php
$price = $item['price']; #change this to order status
switch ($price)
{
case (64); $UPSTrack = '1Z12345E1512345676'; #Shipped add tracking number
echo 'Shipped <br> <a href="http://wwwapps.ups.com/WebTracking/track?track=yes&trackNums='.$UPSTrack.'">Track My Order</a>';
break;
case (88);
echo 'Shipped';
break;
default;
echo 'Processing';
break;
}
?>
</td>
<td>
<?php foreach ($item['options'] as $option => $value)
{
echo '<span class="option">'.$option . ': </span> <span class="options">' . $value . '</span>';
}
?>
</td>
<td><?php echo $item['id']; ?></td>
<td><?php echo $item['qty']; ?></td>
<td><?php echo number_format($item['price'],2); ?></td>
</tr>
<?php endforeach; ?>
选项是一个数组
包含一个foreach
循环遍历array
包含在变量中的$data['orders'] = $row->cart;
在数据库中,我正在查找一个客户的cust_orders
表,cust_id
可能有多个1
行,这意味着多个订单。
问题是我只循环最后一行。我需要遍历cust_id
is = to 的所有行$session_id
。
我觉得问题出在我身上,MODEL
因为如果我更改 $data['id'] = $row->cust_id;
为 echo $row->cust_id;' I am able to see all of the rows which match the customers id, but it breaks my
foreach` 代码。
如何正确分配查询values
中的返回值,MODEL
以便显示所有 cust_orders == to $session_id
?