4. for문 -php-

2017. 3. 10. 08:25 from COMPUTER/php

4. for-php-

 

<?

for ($i=1; $i<=5; i++){

echo $i, "<br>";

}

?>

* echo문에서 ,.과 마찬가지로 문장 연결용이다. php안에서 html태그를 사용할 때는 echo문을 사용한다.

 

*for문을 사용해서 <table>태그를 간편하게 만들 수 있다.

<table border = "1">

<tr> <!-- 항상 행이 먼저 나온다. -->

<?

for ($i=2; $i<=9; $i++){

echo "<td> 구구단", $i, "</td>"; //칸을 바꾸며 출력 된다.

if ($i==5){

echo "</tr><tr>"; //5단이 되면 열을 바꾸어 출력한다.

}

}

?>

</tr>

</table>

결과:

구구단2

구구단3

구구단4

구구단5

구구단6

구구단7

구구단8

구구단9

 

 

 

'COMPUTER > php' 카테고리의 다른 글

6. 숫자를 그림으로 대체하기 -php  (0) 2017.03.12
5. 배열 변수 -php-  (0) 2017.03.11
3. 연산자. -php-  (0) 2017.03.10
2. post 방식. -php-  (0) 2017.03.09
1. php의 기본. -php-  (0) 2017.03.08
Posted by star story :

Snippet :: Code View :: "+location.href+'
'+b+"

");top.consoleRef.document.close()}$(".snippet-container").each(function(b){$(this).find("a.snippet-text").click(function(){var d=$(this).parents(".snippet-wrap").find(".snippet-formatted");var c=$(this).parents(".snippet-wrap").find(".snippet-textonly");d.toggle();c.toggle();if(c.is(":visible")){$(this).html("html")}else{$(this).html("text")}return false});$(this).find("a.snippet-window").click(function(){var c=$(this).parents(".snippet-wrap").find(".snippet-textonly").html();a(c);$(this).blur();return false})});$(".snippet-toggle").each(function(b){$(this).click(function(){$(this).parents(".snippet-container").find(".snippet-wrap").toggle()})})});