作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 codeigniter 库函数进行分页。它有效,但我不知道如何按降序显示内容。
public function news($offset = 0) {
$this->load->library('pagination');
$config['base_url'] = base_url() . "index.php/homepage/inbox_news";
$config['total_rows'] = $this->db->count_all_results('news');;
$config['per_page'] = 3;
$config['full_tag_open'] = '<div class="pagination">';
$config['full_tag_close'] = '</div>';
$this->pagination->initialize($config);
$data['posts'] = $this->db->limit(3, $offset)->get('news')->result();
$this->load->view('inbox_news', $data);
}
//这里news是我在数据库中的表名
在 View 页面中,我是这样做的
<?php
foreach ($posts as $row) {
echo $news = $row->news;
}
echo $this->pagination->create_links();
?>
//它正在工作,但默认情况下数据是按升序排列的。我该怎么做才能将其按升序排列?
最佳答案
试着在你得到新闻之前添加这个
$this->db->order_by("id", "desc");
$data['posts'] = $this->db->limit(3,$offset)->get('news')->result();
关于php - 使用分页(使用 codeigniter )时如何按降序获取数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18419986/
我是一名优秀的程序员,十分优秀!