Friday, June 29, 2012

Create View on CodeIgniter

Read The Indonesian Version This time the authors would like to share a little knowledge about using MVC model in CodeIgniter, for this example we try to discuss how to Create View on CodeIgniter. Before starting make sure you have the required below Codeigniter versi 2.1.0 can download here Create database with name "latihan" For the first create Table "user" :   id (int 4) autoincrement username (varchar 30) access (varchar 10)   and insert into table, min 2 record. Next create file "view.php" put on application->controller   <?php...

Friday, June 8, 2012

Introduction to Codeigniter

#c{ text-align: center; } #j{ text-align: justify; } #cd{ font-family: cursive; } Read The Indonesian Version CodeIgniter is open source PHPFramework. It's free to use and manipulate as you wish. CodeIgniter uses MVC (Model View Controller) model programming. MVC is a programming concept where logic and layout are separated, so that the programmers and designers can do their job in focus. Codeigniter can download here. Picture MVC model programming Model Used to process the database...