From c8b21742927c217770e950005741850f17b5d32c Mon Sep 17 00:00:00 2001
From: Derek Allard
If you model is located in a sub-folder, include the relative path from your models folder. For example, if you have a model located at application/models/blog/queries.php you'll load it using:
-$this->load->model('blog/queries');
+$this->load->model('blog/queries');
Once loaded, you will access your model functions using an object with the same name as your class:
-- cgit v1.2.3-24-g4f1b