https://masterkey.masterweb.com/aff.php?aff=8803

Fungsi Perulangan (While) pada PHP


Perulangan (while) adalah sebuah kondisi di mana satu atau beberapa baris kode program (statement) dieksekusi secara berulang-ulang.

Contoh 1 :
<html>
<body>

<?php
$i=1;
while($i<=5)
{
echo "nomer " . $i . "<br />";
$i++;
}
?>

</body>
</html>

Hasildari coding diatas adalah :
nomer 1
nomer 2
nomer 3
nomer 4
nomer 5

Contoh 2 :
html>
<body>

<?php
$i=1;
do
{
$i++;
echo "nomer " . $i . "<br />";
}
while ($i<=5);
?>

</body>
</html>

Hasil dari coding diatas adalah :
nomer 2
nomer 3
nomer 4
nomer 5
nomer 6

Contoh 3 :
<html>
<body>

<?php
$x=array("one","two","three");
foreach ($x as $value)
{
echo $value . "<br />";
}
?>

</body>
</html>

Hasil dari coding diatas adalah :
one
two
three

1 Response to "Fungsi Perulangan (While) pada PHP"