Answers for "while loop use in php"

PHP
12

while loop php

<?php
	$a = 0;
	while($a<=5){
    	echo $a."<br>";
      $a++;
    }
  ?>
Posted by: Guest on December-28-2019
1

while in php

<?php 
  	$limit = 100;
	for($counter,$counter<=$limit;$counter++){
      // code
    }
  ?>
Posted by: Guest on December-24-2021
0

PHP do while Loop

<?php
$x = 1;

do {
  echo "The number is: $x <br>";
  $x++;
} while ($x <= 5);
?>
Posted by: Guest on May-23-2022

Browse Popular Code Answers by Language