[eluser]4myGod[/eluser]
I have a model called member. Now in MY_Controller I load the model for the first time using $this->load->model('member','currentMember'). However on one of the pages I load the model again to get another users information, I use $this->load->model('member','memberModel') but this time I get an error: "Fatal error: Cannot redeclare class Member in ..."
What's wrong? How can I load the model twice?