Hi, The whole thing works perfectly and shows 1 ad for each slide. My goal is to have 3 ads from the db in 1 slide...
I can't find a solution for it whit a foreach loop... Thanks anyway. Sven On Tue, Jan 1, 2013 at 8:05 PM, lowpass <[email protected]> wrote: > Is it possible that the other divs are being generated, but are > hidden? What do the item & active class rules look like? Or maybe some > JS is keeping the others from displaying? Try disabling the carousel > activation code. > > On Sun, Dec 30, 2012 at 1:55 PM, SvenP <[email protected]> wrote: > > 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]> 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]. > >> > To unsubscribe from this group, send email to > >> > [email protected]. > >> > 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. > > > > > > -- > 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. > > > -- 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.
