수업소개
PHP 반복문의 기본적인 형식을 살펴보는 시간입니다.
loop.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <!DOCTYPE html> <html> <head> <meta charset= "utf-8" > <title>Loop</title> </head> <body> <h1> while </h1> <?php echo '1<br>' ; $i = 0; while ( $i < 3){ echo '2<br>' ; $i = $i + 1; } echo '3<br>' ; ?> </body> </html> |