المشاركات

عرض الرسائل ذات التصنيف Insert in CodeIgniter

CodeIgniter Bootstrap: Insert Form Data into Database

صورة
Hi, this CodeIgniter Bootstrap Tutorial will teach you How to Insert Form Data into MySQL Database using CodeIgniter, Bootstrap CSS framework and jQuery UI . I'm going to walk you through step-by-step, creating a form in codeigniter and insert those form data into database. To design the said php codeigniter form, we use twitter boostrap css framework and it's one of my all time favorite and saves time from creating style sheets of our own. If you wonder how to use bootstrap in codeigniter, then read this tutorial on Integrating Bootstrap with CodeIgniter . MySQL Database Example I'm going to use mysql database as an example for this tutorial. Here, take a look at the sample employee database I have. The fields that are highlighted in yellow color are primary keys and those ones in green are foreign keys. Now run this sql query in mysql to create the above database. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; CREATE TABLE IF NOT EXISTS `tbl_department` ( ...