是的,我不确定如何在不损害 mvc 原则的情况下对我的视图文件进行编码以生成以下查询结果。
在模型中查询:
SELECT * FROM events GROUP BY country, area ORDER BY country, area
看法:
<?php if (isset($query)):?>
<?php foreach ($query as $row):?>
<h2><?=$row->country?></h2>
<h3><?=$row->area?></h3>
<?php endforeach;?>
<?php endif;?>
我希望显示结果:
England North South West - 利用 GROUP BY 参数
相对于:
英格兰 北英格兰 南英格兰 西
有人对如何实现这一目标有任何建议吗?