In a lot of MVC frameworks I see that in the controller they load Models like:
$this->load->model('Model');
Is there anything bad about just creating the model objects like so:
$model = new Model();
And am I also supposed to load libraries and helper classes like how it's done in the first example?