tags:

views:

41

answers:

1

How to load model into another model in Codeigniter?

+1  A: 

You really shouldn't be loading models into other models. If models share behavior you can use inheritance but loading of models should always be done within the controller.

Ken Struys
got it Thankyou!
zarpio