|
新闻发布系统前台页面如何显示新闻列表?显示成这样,标题从数据库中获取,发布时间和阅读次数都是从数据库中获取。
- 人大常委会表决通过国有资产法 批准中葡引渡条约[ 2008-10-24 浏览:9 ]
- 人大常委会表决通过国有资产法 批准中葡引渡条约[ 2008-10-24 浏览:9 ]
- 温家宝开始访俄之行 中俄将签重大能源合作协议[ 2008-10-24 浏览:9 ]
模型代码
/*按时间查询指定专栏的前十条新闻报导降序排列*/
function getNewsByItemFlowId_limitone($itemFlowId,$start,$per_rows){
return $this->db->query('select flowId, roleFlowId, itemFlowId, title, readingTimes, isAd, publishTime from tb_news where itemFlowId=? order by publishTime DESC limit 0,10',array($itemFlowId,$start,$per_rows))->result_array();
}
控制器
/*依据专栏列出新闻*/
function getNewsByRoleFlowIdAndItemFlowId_limit($roleFlowId,$itemFlowId,$start,$per_rows)
{
$this->load->model('tb_news_m');
$result['data']=$this->tb_news_m->getNewsByItemFlowId_limitone($itemFlowId,$start,$limit);
$this->load->view('index',$result);
}
视图
</div>
<!--图片新闻对应的标题-->
<div id="newsOfPicSwitch">
<ul>
<?php foreach ($query->result() as $row):?>
<li><?php echo anchor(, '$title', 'title="$title"');?><span><?php echo $row['publishTime'];?></span></li>
<?php endforeach;?>
</ul>
</div>
<!--end of 图片新闻对应的标题-->
<div class="clear"></div>
</div>
<!--end of 图片新闻切换-->
</div>
</div>
<!--end of 校园动态-->
|
|