Answers for "ph while loop"

PHP
7

while loop php

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

while true php

while(true) {
 // Infinite Loop
}
Posted by: Guest on August-10-2020

Browse Popular Code Answers by Language