Today, We want to share with you insert data in codeigniter.In this post we will show you codeigniter migration inserts data, hear for add data in database in codeigniter we will give you demo and example for implement.In this post, we will learn about How To Insert Data Into Database With CodeIgniter? with an example.
How to insert data in database – CodeIgniter framework
SQL Query
CREATE TABLE crud ( `id` int(11) NOT NULL, `first_name` varchar(30) NOT NULL, `last_name` varchar(30) NOT NULL, `email` varchar(30) NOT NULL, PRIMARY KEY (id) );
Crud.php (Controller)
load->database(); /*load Model*/ $this->load->model('Crud_model'); } /*Insert*/ public function storememberinfo() { /*load registration view form*/ $this->load->view('insert'); /*Check submit button */ if($this->input->post('save')) { $data['first_name']=$this->input->post('first_name'); $data['last_name']=$this->input->post('last_name'); $data['email']=$this->input->post('email'); $member=$this->Home_model->saverecords($data); if($member>0){ echo "Records Saved Successfully"; } else{ echo "Insert error !"; } } } } ?>
Crud_model.php (Model)
db->insert('crud',$data); return $this->db->insert_id(); } }
insert.php (View)
Registration form
Run the program on your browser with URL:
http://localhost/codeIgniter/index.php/Crud/storememberinfo
I hope you get an idea about insert data in codeigniter.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.