Perulangan Do While
<?php
$i = 1;
do {
echo $i . " ";
$i++;
} while ($i <= 5);
// Output: 1 2 3 4 5
$i = 10;
do {
echo $i . " ";
$i++;
} while ($i <= 5);
// Output: 10
?>
?>Last updated
<?php
$i = 1;
do {
echo $i . " ";
$i++;
} while ($i <= 5);
// Output: 1 2 3 4 5
$i = 10;
do {
echo $i . " ";
$i++;
} while ($i <= 5);
// Output: 10
?>
?>Last updated