I’m having a little problem trying to order my query results.
$this->db->use_table('name_of_table');
$data['query'] = $this->db->get();
$this->db->orderby("id", "desc");
The last line produces the following error message:
Fatal error: Call to undefined method _DB::orderby() in (path.to.CI)\application\controllers\blog.php on line 18
I don’t have a clue as to what I did wrong (again - sigh)
Any ideas?
