Welcome Guest, Not a member yet? Register   Sign In
Loop within loop: in controller or in the view?
#18

[eluser]obiron2[/eluser]
you want to end up with a data set that looks like this:

$animals = array('dogs' => array('rover','gnasher'),'cats'=> array('kitty','fluffy','max'))

in your view you can then nest the loops


Code:
foreach ($animals as $animaltype => $animalnames)
{
  print "$animaltype<BR>";
  foreach ($animalnames as $animalname)
  {
    print "    - $animalname<BR>";
  }
  print "<BR>";
}

how you get the data into that format is up to you.

obiron


Messages In This Thread
Loop within loop: in controller or in the view? - by El Forum - 11-07-2007, 08:12 PM
Loop within loop: in controller or in the view? - by El Forum - 11-07-2007, 08:29 PM
Loop within loop: in controller or in the view? - by El Forum - 11-07-2007, 08:35 PM
Loop within loop: in controller or in the view? - by El Forum - 11-07-2007, 08:46 PM
Loop within loop: in controller or in the view? - by El Forum - 11-07-2007, 08:56 PM
Loop within loop: in controller or in the view? - by El Forum - 11-07-2007, 09:42 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 05:24 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 05:42 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 05:42 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 05:50 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 06:53 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 07:06 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 07:26 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 07:34 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 08:03 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 08:12 PM
Loop within loop: in controller or in the view? - by El Forum - 11-08-2007, 08:47 PM
Loop within loop: in controller or in the view? - by El Forum - 11-10-2007, 01:50 PM



Theme © iAndrew 2016 - Forum software by © MyBB