codeigniter(ci)数据库操作教程简单增删改查
codeigniter (ci)数据库操作教程 增删改查简单介绍
增加数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
/*数据insert*/ $data = array( 'username' => $this->input->post("username"), 'password' => $this->input->post("password"), 'admin' => rand(0,99), ); //第一个参数为表名,第二个参数为传值 $res=$this->db->insert('hy_test', $data); //获取增加的id $new_id_number = $this->db->insert_id(); |
修改数据
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/*修改*/ $data = array( 'username' => $this->input->post("username"), 'password' => $this->input->post("username"), 'admin' => '100', ); //where为条件。update第一个参数为表名,第二个参数为数组数值 $res=$this->db->where('id', '3')->update('hy_test', $data); |
查询数据
1 2 3 4 5 6 7 8 9 10 11 |
//第一种 $query = $this->db->query("SELECT * FROM hy_user WHERE id = 1")->result_array(); var_dump($query);exit; //第二种 $query = $this->db->where('id','2')->get('hy_user')->result_array(); var_dump($query);exit; //第三种 $query = $this->db->get_where('hy_user',array('id'=>'1'))->result_array(); var_dump($query);exit; |
删除数据
1 2 3 |
$this->db->where('id', '2'); $this->db->delete('hy_test'); |
- CodeIgniter分页教程
- PHP函数获取搜索引擎来源和关键字