Rename, move, resort the files of project
[sandbox.git] / sb1 / break.php
bloba25e7ec9ea7b368b8b2d28aad04c55ce80a135f2
1 <html>
2 <head>
3 <title>Loops: break</title>
4 </head>
5 <body>
6 <?php
7 for ($count = 0; $count <= 10; $count++) {
8 echo $count;
9 if ($count == 10) { break; }
10 echo ", ";
13 </body>
14 </html>