Hi, Guys
If you have same issue, undefined property $db in codeigniter 3 application then you are a right place and i can help to fix this issue quick.
If you used model and then you are directly going to use "$this->db" for access database table data. You will find this error "undefined property $db in codeigniter" If you are using codeigniter 3 project.
However, we can resolve this issue in just a sec. So just you have to load "database" library from autoload.php file. So let's simply add as like i added this line on autoload.php file.
application/config/autoload.php
....
$autoload['libraries'] = array('database');
....
Now you can try and check did you solved or not.
I hope you found your best solution...
Do you like below Tutorials ?
- Laravel 5.6 - Collection could not be converted to int
- Laravel - How to generate secure https URL from route?
- Laravel - Vue JS File Upload Example
- How to get last 7 days data in Laravel?
- Laravel Validation required if other field empty example
- Laravel Eloquent - When Case Statement in Select Query Example
- Laravel 7.x and 6.x Passing Variable to Javascript Example
- How to pass PHP variables in JavaScript or jQuery?