I am using CodeIgniter 4. First I write this to get records from the database, but this shows me an error ( Call to a member function table() on null)
$CI = & get_instance();
$CI -> db -> select('*');
$CI -> db -> from($table_name);
Then I read from documentation and write this
$db->table("tablename");
But this method also failed.