* and then Jason Davidson declared....
> I see lots of references to modulus, which works fantastic.. but how
> abut just testing if its equal to 20, then there isnt that extra
> arthmitc call.. this is just another way to do the same thing.. take
> your pick.. unless someone can see a bad reason for this method. 
> 
> $count = 0;
> foreach ..... {
>    if($count == 20) {
>         .............
>         $count = 0;
>     } else {
>         $count++;
>     }
> }

That would be fine, but im afraid in my effort to make the example
simple i forgot to ad a line:

$count++; ;-)

-- 
Nick W

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

Reply via email to