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)
<?php class Crud extends CI_Controller { public function __construct() { /*call CodeIgniter's default Constructor*/ parent::__construct(); /*load database libray manually*/ $this->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)
<?php class Crud_model extends CI_Model { /*Insert*/ /*Insert*/ function saverecords($data) { $this->db->insert('crud',$data); return $this->db->insert_id(); } }
insert.php (View)
<!DOCTYPE html> <html> <head> <title>Registration form</title> </head> <body> <form method="post"> <table width="600" border="1" cellspacing="5" cellpadding="5"> <tr> <td width="230">First Name </td> <td width="329"><input type="text" name="first_name"/></td> </tr> <tr> <td>Last Name </td> <td><input type="text" name="last_name"/></td> </tr> <tr> <td>Email ID </td> <td><input type="email" name="email"/></td> </tr> <tr> <td colspan="2" align="center"><input type="submit" name="save" value="Save Data"/></td> </tr> </table> </form> </body> </html>
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.