Answers for "while with condition in php"

PHP
3

while true php

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

while in php

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

Code answers related to "while with condition in php"

Browse Popular Code Answers by Language