codeigniter 使用

Posted andydaopeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeigniter 使用相关的知识,希望对你有一定的参考价值。

CodeIgniter系列 记录count和分页

对于某个表的不带条件的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();

 

CI的pagination库可以帮助添加分页链接,用法可以看user_guide/libraries/pagination.html

有几点需要说明。

base_url里边如果有超过2个uri_segments,则需要设置$config[‘uri_segment‘] = base_url_segments + 1

也就是uri_segment默认是3。如果不设置的话,第一页和前一页,后一页的链接都不正确。

文章标签: user urltable 

以上是关于codeigniter 使用的主要内容,如果未能解决你的问题,请参考以下文章

CodeIgniter + Smarty - 是不是相关?

CodeIgniter - 使用事务插入多个表

Codeigniter _remap 函数

使用 jcrop 和 CodeIgniter 裁剪图像

Codeigniter- Ajax Codeigniter Ajax - 通过ajax返回不止一行

PHP实战002:CodeIgniter安装和入门使用