Answers for "using while statement in php"

PHP
7

while loop php

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

Code answers related to "using while statement in php"

Browse Popular Code Answers by Language