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++; } ?> ... In the above ...
確定! 回上一頁