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
Ini tambahan pengetahuan bagi saya.
ReplyDelete