020 - do while1) rajat hi...
2) rajat hi...
3) rajat hi...
4) rajat hi...
5) rajat hi...
6) rajat hi...
7) rajat hi...
8) rajat hi...
9) rajat hi...
10) rajat hi...
<?php
// 020 - do while
echo "</br><span class='myheading'> 020 - do while</span></br>";
$a = 1;
do{
echo $a .") rajat hi...<br>";
$a++; //Increment Loop
}while($a <= 10)
/* same code with decrement
$b = 10;
do{
echo $b .") Hello Yahoo Baba<br>";
$b--; //Decrement Loop
}while($b <= 1) */
?>