묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
mysql에서..
2003.06.02 21:23
table의 내용을 읽을 때 아래처럼 최신~옛날로 읽는데요..
$temp = mysql_query("select * from $db order by no desc limit $start, $count");
table의 내용을 옛날~최신으로 읽는 방법이 없을까요?
$temp = mysql_query("select * from $db order by no desc limit $start, $count");
table의 내용을 옛날~최신으로 읽는 방법이 없을까요?
desc를 빼주세요.
$temp = mysql_query("select * from $db order by no limit $start, $count"); 이렇게..