반응형
1.
$result = mysql_query($query);
$total = mysql_affected_rows();
for($i=1; $i<=$total; $i++) {
$row =mysql_fetch_array($result);
}
2.
for($i=0;$row=mysql_fetch_array($query);++$i)
{
}
3.
$i = 0;
while($row=mysql_fetch_array($query)) {
......
......
$i ++;
1. $result = mysql_query($query); $total = mysql_affected_rows(); for($i=1; $i<=$total; $i++) { $row =mysql_fetch_array($result); } 2. for($i=0;$row=mysql_fetch_array($query);++$i) { } 3. $i = 0; while($row=mysql_fetch_array($query)) { ...... ...... $i ++;
$result = mysql_query($query);
$total = mysql_affected_rows();
for($i=1; $i<=$total; $i++) {
$row =mysql_fetch_array($result);
}
2.
for($i=0;$row=mysql_fetch_array($query);++$i)
{
}
3.
$i = 0;
while($row=mysql_fetch_array($query)) {
......
......
$i ++;
1. $result = mysql_query($query); $total = mysql_affected_rows(); for($i=1; $i<=$total; $i++) { $row =mysql_fetch_array($result); } 2. for($i=0;$row=mysql_fetch_array($query);++$i) { } 3. $i = 0; while($row=mysql_fetch_array($query)) { ...... ...... $i ++;
반응형
'웹프로그램' 카테고리의 다른 글
PHP 인크루드 경로 편하게 쓰자 (0) | 2008.10.18 |
---|---|
PHP 프레임 안쪽에서 새로고침 해도 페이지 안변하게 (0) | 2008.10.15 |
PHP exec 함수로 권한 설정 (0) | 2008.10.14 |
PHP setcookie (0) | 2008.10.14 |
php foreach 함수 (0) | 2008.10.14 |
html table height=100% 안먹을 경우 (0) | 2008.10.14 |
PHP 이달의 마지막날 (0) | 2008.10.14 |
PHP time() (0) | 2008.10.14 |