<?php $num_rows = mysql_num_rows($result); echo $num_rows; $i = 1; while ($line = mysql_fetch_array($result) ){ if ($i%3==1) echo "<tr>"; echo "<td>". $line["makedate"]."</td>"; if ($i%3 ==0) echo "</tr>"; $i++; } if ($i%3 != 1) echo "</tr>"; ?>
'PHP' 카테고리의 다른 글
[ob_get_contents] 출력버퍼를 이용해서 버퍼의 내용가져오기 (0) | 2010.01.29 |
---|---|
나의 PHP 유틸클래스 (0) | 2010.01.08 |
PHP 초보들을 위한 초간단 TIP (0) | 2010.01.08 |
문자열함수 (0) | 2009.12.15 |
[PHP] 파일관련 함수 (0) | 2009.12.15 |
[PHP]기본문법 (0) | 2009.12.15 |
[FUNCTION] 자주쓰는 함수 (0) | 2009.12.15 |
[MYSQL]간단한 사용법 (0) | 2009.12.15 |
PHP 기본문법 (0) | 2009.04.06 |
Php 이미지 정보 알아내기 (0) | 2009.04.06 |