Added Control Structures: Loops
[sandbox.git] / php_sandbox / whileloops.php
blob9febf7f55dd33522d2db2c0d2873d9603e92a044
1 <html>
2 <head>
3 <title>Loops: while</title>
4 </head>
5 <body>
6 <?php
7 $count = 0;
8 while ($count <= 10) {
9 echo $count . ", ";
10 $count++;
12 echo "<br />Count: {$count}";
14 <br />
15 <?php
16 $count = 0;
17 while ($count <= 10) {
18 if ($count == 5) {
19 echo "FIVE";
21 else {
22 echo $count . ", ";
24 $count++;
26 echo "<br />Count: {$count}";
28 </body>
29 </html>