I have the same problem of bobaso
But I don't understand How can I do to solve the problem.
How I can edit my model to do it?
Thank you
On Nov 17, 8:31 pm, Jeremy Burns | Class Outfit
<jeremybu...@classoutfit.com> wrote:
> The syntax you are using relates to models, not to controllers. So within the users_controller you can do:
>
> $result = $this->User->Profile->find(...);
>
> ...so long as the Profile model is related to the User model.
>
> If you want to do the same but from within the User model, you'd do this:
>
> $result = $this->Profile->find(...);
>
> Jeremy Burns
> Class Outfit
>
> jeremybu...@classoutfit.comhttp://www.classoutfit.com
>
> On 17 Nov 2010, at 10:20,bobasowrote:
>
>
>
>
>
>
>
> > I'm having some troubles with PHP while working with Controllers.
> > If i want to create and then use 2 controllers,when using this syntax
> > it doesn't work:
>
> > $this->Controller1->Controller2->find("all"...)
>
> > Instead this works:
>
> > $this->Controller1->find("all"...)
>
> > I was thinking that maybe i need to initialise first the Controller2
> > in this way:
>
> > var $users="Controller2"
>
> > and then maybe the first syntax may work,but i'm not sure.Any advice?
>
> > Thank you in advance for your help =)
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others with their CakePHP related questions.
>
> > You received this message because you are subscribed to the Google Groups "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscribe@googlegroups.com For more options, visit this group athttp://groups.google.com/group/cake-php?hl=en
Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
No comments:
Post a Comment