Codeigniter 3 Tutorial 2 – insert/update/delete/select with mysql table part 1/3




This tutorial will show you how to insert or save data into database, and update MySql table using Codeigniter (PHP framework). You will see how to use view, …

Original source


9 responses to “Codeigniter 3 Tutorial 2 – insert/update/delete/select with mysql table part 1/3”

  1. I've got this issue :
    Message: Undefined property: Register::$db Filename: core/Model.php

    I solved it by adding this line into the __construct of Model_user :
    public function __construct()
    {
    parent::__construct();
    $this->load->database(); <===== Added line

    }

Leave a Reply