Add go.php for redirecting to default page
[sandbox.git] / php_sandbox / forloops.php
blobbdbd92380b7288e51f64f5568ded301a960c05e7
1 <html>
2 <head>
3 <title>Loops: for</title>
4 </head>
5 <body>
6 <?php
7 for ($count = 0; $count <= 10; $count++) {
8 echo $count . ", ";
11 </body>
12 </html>