|
发表于 2008-11-18 09:58:23
|
显示全部楼层
当然可以,看看代码:
model的片段PHP复制代码 /**
*取得最近的几条新闻
*用法:getLastNews(5)
*/
function getLastNews($num)
{
$this->db->order_by("id", "desc");
$query = $this->db->get('news',$num,0);
if ($query->num_rows() > 0)
{
return $query;
}
}
复制代码
controller的片段:PHP复制代码
function readNews ($id) {
$data["news"] = $this->News_model->getNewsById($id);
$data["lastnews"] = $this->News_model->getLastNews(5);//##############这里了###############
$data["page_title"] = $data["news"]["title"] . "(" . $data["news"]["time"] . ")";
$data["Keywords"] = $data["news"]["title"] . ",GPS车辆管理,GPS车辆管理系统,昆山GPS车辆管理系统,华领GPS车辆管理系统";
$Description = trim(strip_tags(nl2br($data["news"]["content"])));
$len = 300;
$data["Description"] = substr($Description, 0, $len);
$this->layout->view('news', $data);
}
复制代码
看看controller里的“//##############这里了###############”
:) |
|