Also u can do nested foreach loops too...

Example:

while( $row = mysql_fetch_array( $result ) ) {
  $rows[] = $row;
}

foreach( $rows as $row ) {
  foreach( $row as $i => $value ) {
    // do stuff here
    echo "$i = $value\n";               
  }
}

I do this tons...

--
bigdog


On Wed, 2003-07-09 at 11:56, Micah Montoy wrote:
> Anyone ever do a nested for loop?
> 
> $i =0;
> $j =0;
> for ($x=0; $x < 50; $x++){
>     echo ("1 to 50");
> 
>         for ($j=0: $j < 5; $j++) {
>             echo ("less than 5");
>         }
> }
> 
> I haven't seen a nested loop in PHP, so I'm not sure of the exact syntax.
> 
> thanks
> 
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to