$count = 1; 

while($count < 10)
    {
     echo "Number is $count <BR>\n";
     $count++ 
    }

> for ($count = 0; $count <= 10; $count++){
> echo "Number is $count <BR>\n";
> }
> 
> Could anyone tell me how is it with while instead of for??
> Thank you!!

Best regards,
Andrew
---------------------------------------
Andrew Hill - OpenLink Software
Director Technology Evangelism
eBusiness Infrastructure Technology
http://www.openlinksw.com



-- 
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