If you want to do something like this you're better off with a while loop
$x = 1;
while($x < 10)
{       // do stuff with x
        if (whatever) continue;
        $x++;
};

incremeting a while loop instead of for seems daft until you want to
manipulate the incremented value within the loop.

        Tim Ward
        Senior Systems Engineer

Please refer to the following disclaimer in respect of this message:
http://www.stivesdirect.com/e-mail-disclaimer.html

>  -----Original Message-----
> From:         [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED]] 
> Sent: 02 February 2001 00:51
> To:   [EMAIL PROTECTED]
> Subject:      php-general Digest 2 Feb 2001 00:51:13 -0000 Issue 487
> 
>  << Message: RE: Directory Listing with PHP >>  << Message: 
> NEWBIE QUESTION >>  << Message: Re: [PHP] NEWBIE QUESTION >>  
> << Message: PHP and report generation >>  << Message: RE: 
> [PHP] Symbolic link fails when User Authentication comes in 
> >>  << Message: Performance hit with certain apache configs? 
> >>  << Message: Setting The Font In SENDMAIL >>  << Message: 
> Re: [PHP] Is there a 'redo' loop control function? >>  << 
> Message: Email Attachment >>  << Message: details on imap 
> functions. >>  << Message: Re: [PHP] details on imap 
> functions. >>  << Message: Re: [PHP] details on imap 
> functions. >>  << Message: rephrasing: start session in 
> frame-index, continue in pages >>  << Message: Variables 
> within functions, out? >>  << Message: Closing Objects 
> "Cleaning Up" >>  << Message: Re: [PHP] Closing Objects 
> "Cleaning Up" >>  << Message: Re: [PHP] Closing Objects 
> "Cleaning Up" >>  << Message: Why?? SPRINTF("SELECT 
> sequence,prodnum,childdesc....); >> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to