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(); |
修改数据 [crayon-6744e10d…
Read more