묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
카운팅 관련질문
2006.05.09 23:26
안녕하세요?
아래와 같은 카운딩 부분에서 어디를 수정해 주면 2배의 카운팅이 될까요? ㅎㅎ
$sql = " select count(count_id) from $count_table where substring(count_datetime, 1, 10) = '".date("Y-m-d")."' ";
$result = mysql_query($sql);
if($result) $count_today = number_format(mysql_result($result, 0, 0), 0);
감사합니다.
아래와 같은 카운딩 부분에서 어디를 수정해 주면 2배의 카운팅이 될까요? ㅎㅎ
$sql = " select count(count_id) from $count_table where substring(count_datetime, 1, 10) = '".date("Y-m-d")."' ";
$result = mysql_query($sql);
if($result) $count_today = number_format(mysql_result($result, 0, 0), 0);
감사합니다.
댓글 1
-
BLUE
2006.05.15 11:00
$sql = " select (count(count_id)*2) AS A from $count_table where substring(count_datetime, 1, 10) = '".date("Y-m-d")."' ";