当前位置: 首页 » PHP » CodeIgniter » CodeIgniter分页教程

CodeIgniter分页教程

分页的简单教程

要想分页先必须获取所有数据。

对于某个表的不带条件的count,可以简单的用

$total = $this->db->count_all($table_name)

来获取,但是如果有条件,则要用count_all_results

$this->db->where(‘sex’, ‘M’);

$this->db->from(‘user’);

$total = $this->db->count_all_results();

 

 

下面是完整案例:

 

请尊重我们的辛苦付出,未经允许,请不要转载 本站 的文章,鄙视各种无耻的采集行为!
Tagged on: