[PHP] Re: How to break out of nested loops

2003-03-17 Thread Bix
Cheers buddy, didn't think of that! ;o) "Philip Hallstrom" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > http://www.php.net/manual/en/control-structures.break.php > > -philip > > On Mon, 17 Mar 2003, Bix wrote: > > > I have a for loop within a for loop, and need to break out of bo

[PHP] Re: How to break out of nested loops

2003-03-17 Thread Philip Hallstrom
http://www.php.net/manual/en/control-structures.break.php -philip On Mon, 17 Mar 2003, Bix wrote: > I have a for loop within a for loop, and need to break out of both > together... > > for ( blah ) { > for ( blah ) { > if ( true ) { break; } // only breaks out of this loop, how can I break it