📜  CodeIgniter数据库插入记录

📅  最后修改于: 2021-01-01 03:33:23             🧑  作者: Mango

CodeIgniter数据库INSERT记录

在此示例中,我们将通过CodeIgniter插入数据库中显示印度名称含义的不同值。

application / controller中,将创建文件baby_form.php。


load->view("baby_form_add");
    }
    function savingdata()
    {
        //this array is used to get fetch data from the view page.
        $data = array(
                        'name'     => $this->input->post('name'),
                        'meaning'  => $this->input->post('meaning'),
                        'gender'   => $this->input->post('gender'),
                        'religion' => $this->input->post('religion')
                        );
        //insert data into database table.
        $this->db->insert('baby',$data);

        redirect("baby_form/index");
    }
}
?>

看上面的快照,我们的表名是“ baby”。




    Baby Form Add


    


Name: :
Meaning: :
Gender: :
Religion: :

这是我们的视图页面,正在加载到控制器页面中。

要在浏览器上运行它,请传递URL

http://localhost/insert/index.php/Baby_form/

通过在上面的表格中插入各种名称,我们创建了表格,如下所示。