묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
예전 php 카운터 만들기 강좌에 대한 질문
2002.05.17 20:05
안녕하세요.
좀 오래된 강좌인데....요.
처음 카운터 강좌중 질문이 있어서..........
강좌 12번입니다.
아래와 같이 소스가 있는데요..
$que="select * from zerocount where id=1"; // 전체
$result=mysql_query($que, $connect );
$temp=mysql_fetch_array($result);
$count[0]=$temp[count];
$que="select * from zerocount order by id desc limit 2"; // 오늘, 어제
$result=mysql_query($que, $connect );
$temp=mysql_fetch_array($result);
$count[1]=$temp[count]; // ---- 오늘꺼
$today_id=$temp[id]; <---------------------<왜 $temp[id]를 $today_id로 저장하는지
$temp=mysql_fetch_array($result);
$count[2]=$temp[count];
$tempid=$temp[id]; // ------ 어제꺼 <---------------------<왜 $temp[id]를 $temp_id로 저장하는지
$que="select * from zerocount where id>1 order by count desc limit 1"; // 최고
$result=mysql_query($que, $connect );
$temp=mysql_fetch_array($result);
$count[3]=$temp[count];
위의 빨간색으로 표시된부분입니다...............
증말 궁금합니다. $today_id 와 $temp_id는 아무데도 안쓰는데.............
고수님들 알켜주세요...ㅜ.ㅜ
끝까지 읽어주셔서 감사...
좀 오래된 강좌인데....요.
처음 카운터 강좌중 질문이 있어서..........
강좌 12번입니다.
아래와 같이 소스가 있는데요..
$que="select * from zerocount where id=1"; // 전체
$result=mysql_query($que, $connect );
$temp=mysql_fetch_array($result);
$count[0]=$temp[count];
$que="select * from zerocount order by id desc limit 2"; // 오늘, 어제
$result=mysql_query($que, $connect );
$temp=mysql_fetch_array($result);
$count[1]=$temp[count]; // ---- 오늘꺼
$today_id=$temp[id]; <---------------------<왜 $temp[id]를 $today_id로 저장하는지
$temp=mysql_fetch_array($result);
$count[2]=$temp[count];
$tempid=$temp[id]; // ------ 어제꺼 <---------------------<왜 $temp[id]를 $temp_id로 저장하는지
$que="select * from zerocount where id>1 order by count desc limit 1"; // 최고
$result=mysql_query($que, $connect );
$temp=mysql_fetch_array($result);
$count[3]=$temp[count];
위의 빨간색으로 표시된부분입니다...............
증말 궁금합니다. $today_id 와 $temp_id는 아무데도 안쓰는데.............
고수님들 알켜주세요...ㅜ.ㅜ
끝까지 읽어주셔서 감사...