php之CodeIgniter学习笔记
在使用数据库之前,我们最好将数据库进行自动连接:config/autoload.php自动加载 $autoload[‘libraries’] = array(‘database’);一些常用函数 选择数据$this->db->select();允许你在SQL查询中写 SELECT 部分。$this->db->where();$this->db->or_where();$this->db->where_in();允许你在SQL查询中写 WHERE部分,其余各种where语句请看手册。$this->db->get();运行选择查询语句并且返回结果集。可以获取一个表的全部数据。$this->db->
用户评论