Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Do while loop

Mon Oct 27, 2008 12:44 pm

Code:
<?php
$a
= 1;
do{
    echo
$a . "<br>";
    
$a++;
}while (
$a > 10);
?>




Post a reply
  Related Posts  to : Do while loop
 C++ While loop     -  
 do while loop and for loop C++ example help.     -  
 While loop     -  
 Why will my loop does not work     -  
 Breaking a Loop     -  
 PIC Assembly For Loop Example     -  
 I NEED SOME HELP IN THE FOR LOOP PLZ .. IAM JUST A BEGINNER     -  
 Using include() Within a Loop     -  
 for statement loop indefinitely     -  
 Need help with code for a while loop program     -  

Topic Tags

PHP Loops