Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

. . . . . . . . .

Pemrograman Web menggunakan PHP

Bab 9 Looping/Pengulangan

Statemen Looping statements digunakan untuk mengeksekusi blok program yang sama beberapa kali. Jenis-jenis Looping while do...while for forea h

Statemen while while (condition) code to be executed; Program9-1.php <html> <body> <?php $i=1; while($i<=5) { e ho !"he #$mber i% ! . $i . !<br &>!; $i''; ( ?> <&body> <&html> Statemen do...while do { code to be executed; ( while (condition); Program9-).php <html> <body> <?php $i=*; do { $i''; e ho !"he #$mber i% ! . $i . !<br &>!; ( while ($i<5); ?> <&body> <&html>

............................

Statemen for +or (initialization; condition; increment) { code to be executed; ( Program9-,.php <html> <body> <?php +or ($i=1; $i<=5; $i'') { e ho !-ello .orld/<br &>!; ( ?> <&body> <&html>

Statemen forea h +orea h (array as value) { code to be executed; ( Program9-0.php <html> <body> <?php $arr=array(!o#e!1 !two!1 !three!); +orea h ($arr a% $2al$e) { e ho !3al$e4 ! . $2al$e . !<br &>!; ( ?> <&body> <&html>

You might also like