인기검색어 질문입니다. 채택완료
// 인기검색어 출력 // $skin_dir : 스킨 디렉토리 // $pop_cnt : 검색어 몇개 // $date_cnt : 몇일 동안 function popular($skin_dir='basic', $pop_cnt=2, $date_cnt=0.5) { global $config, $g5;
if (!$skin_dir) $skin_dir = 'basic';
$date_gap = date("Y-m-d", G5_SERVER_TIME - ($date_cnt * 5)); $sql = " select pp_word, count(*) as cnt from {$g5['popular_table']} where pp_date between '$date_gap' and '".G5_TIME_YMD."' group by pp_word order by cnt desc, pp_word limit 0, $pop_cnt "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { $list[$i] = $row; // 스크립트등의 실행금지 $list[$i]['pp_word'] = get_text($list[$i]['pp_word']); }
ob_start(); if(G5_IS_MOBILE) { $popular_skin_path = G5_MOBILE_PATH.'/'.G5_SKIN_DIR.'/popular/'.$skin_dir; $popular_skin_url = G5_MOBILE_URL.'/'.G5_SKIN_DIR.'/popular/'.$skin_dir; } else { $popular_skin_path = G5_SKIN_PATH.'/popular/'.$skin_dir; $popular_skin_url = G5_SKIN_URL.'/popular/'.$skin_dir; } include_once ($popular_skin_path.'/popular.skin.php'); $content = ob_get_contents(); ob_end_clean();
return $content; }
블럭처리부분을 수정하였는데....
검색어 노출이 이상합니다.
실시간으로 검색어 순위를 노출하려면 어떻게 수정해야 하나요? ?>
답변을 작성하려면 로그인이 필요합니다.
로그인