while loop in PHP ... The while loop executes a block of code while a condition is true. ... <?php $i=1; while($i<=5) { echo "The number is " . $i . "<br>"; $i++; } ...
確定! 回上一頁