Yes,

Each ad relates to a sponsor... works perfect.

array(
        (int) 0 => array(
                'Ad' => array(
                        'id' => '2',
                        'sponsor_id' => '0',
                        'title' => '...',
                        'body' => '...',
                        'link' => 'www....com'
                ),
                'Sponsor' => array(
                        'id' => '8',
                        'name' => ...,
                        'contact_first_name' => ...,
                        'contact_name' => ...,
                        'contact_tel' => ...,
                        'contact_email' => ...
                )
        ),


On Sunday, December 30, 2012 7:20:54 PM UTC+1, cricket wrote:
>
> die(debug($ads)); 
>
> Are you certain of the array structure? 
>
> On Sat, Dec 29, 2012 at 5:39 PM, SvenP <[email protected] <javascript:>> 
> wrote: 
> > Hi, 
> > 
> > I'm looking for a way to show multiple 'Ads' / slide with a foreach loop 
> > from the db. ( each client has ads tied to them.) 
> > 
> > My code now works great but only shows one ad / slide. 
> > 
> > Thanks for your time! 
> > 
> > Sven 
> > 
> > Code: 
> > ___________ 
> > 
> > <div class="carousel-inner"> 
> > <?php foreach ($ads as $indexValue => $ad): 
> > if($indexValue == 0){?> 
> > <div class="item active"> 
> > <a class="adshref" href="//<?php echo $ad['Ad']['link']?>"><?php echo 
> > $ad['Ad']['title']?></a><br> 
> > <span class="adslink"><?php echo $ad['Ad']['link']?></span><br> 
> > <span class="adsbody"><?php echo 
> $ad['Ad']['body']?></span><br></div><?php 
> > } else { ?> 
> > <div class="item"> 
> > <a class="adshref" href="//<?php echo $ad['Ad']['link']?>"><?php echo 
> > $ad['Ad']['title']?></a><br> 
> > <span class="adslink"><?php echo $ad['Ad']['link']?></span><br> 
> > <span class="adsbody"><?php echo $ad['Ad']['body']?></span><br></div> 
> > <?php } endforeach; ?>  </div> 
> > 
> > -- 
> > Like Us on FaceBook https://www.facebook.com/CakePHP 
> > Find us on Twitter http://twitter.com/CakePHP 
> > 
> > --- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "CakePHP" group. 
> > To post to this group, send email to [email protected]<javascript:>. 
>
> > To unsubscribe from this group, send email to 
> > [email protected] <javascript:>. 
> > Visit this group at http://groups.google.com/group/cake-php?hl=en. 
> > 
> > 
>

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
Visit this group at http://groups.google.com/group/cake-php?hl=en.


Reply via email to