dkni, read the model, understand how MVC works.  By default associated
models are loaded so you can make calls to the with
$this->ModelName->AssociatedModel.

But if you need to load up some others (really try and think of a way
not to do this a lot).
$uses = array('ModelName', 'otherModel');

Then, you call it directly $this->otherModel.

But DPape is right sounds like you need to spend some time with the
manual and understand MVC first.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to