On Sat, Nov 5, 2011 at 11:11 AM, Jeremy Burns | Class Outfit <
jeremybu...@classoutfit.com> wrote:

> Sometimes, I give up.
>
> Jeremy Burns
> Class Outfit
>
> http://www.classoutfit.com
>
> On 4 Nov 2011, at 23:06, Andras Kende wrote:
>
> Daniel,
>
> The easiest way to do what you need is:
>
> <?php
> class CategoriesController extends AppController {
>
> public function index($id = null) {
> $posts = $this->Category->Post->find('all', array(
> 'conditions' => array('Category.id' => $id),
> ));
> // print_r($posts); to debug...
> $this->set(compact('posts'));
> }
>
> }
>
> This will just do a single query with 2 left joins..
> Just make sure all 3 models has the relationships setup correctly..
>
>
> Andras Kende
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group
> at http://groups.google.com/group/cake-php
>
>
>  --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group
> at http://groups.google.com/group/cake-php
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to