stopwhile loop when complete number of round in php code example
Example: while loop php
<?php
$a = 0;
while($a<=5){
echo $a."<br>";
$a++;
}
?>
<?php
$a = 0;
while($a<=5){
echo $a."<br>";
$a++;
}
?>