미채택 완료

최신글로 그룹내 추천수많은 게시글 가져오기..

2014-09-30 (화) 15:10:22 4,830

옛질문답변게시판도 검색해봤지만 제가 응용력이 없는건지 게시물이 없다고만 나와서

질문으로 올립니다...

latest_group.lib.php는 아래와 같은 소스를 쓰고 있습니다.

Copy
<?if (!defined('_GNUBOARD_')) exit; function latest_group($skin_dir="", $gr_id, $rows=10, $subject_len=40, $no_table="", $category="", $orderby=""){	global $config;	global $g4; 	$list = array(); $limitrows = $rows;	$sqlgroup = " select bo_table, bo_subject,bo_9 from $g4[board_table] where gr_id = '$gr_id' $sqls "; 	// 제거할 테이블들	if ($no_table) {		$t_flag = serialize($no_table);		if ($t_flag[0] == "a") {	//Array이면			for ($ic=0; $ic<count($no_table); $ic++) {				$sqlgroup .= " and bo_table != '$no_table[$ic]' ";			}		} else if ($t_flag[0] == "s") {	//String이면			$sqlgroup .= " and bo_table != '$no_table' ";		}	} 	$sqlgroup .= " and bo_use_search=1 order by bo_order_search ";	$rsgroup = sql_query($sqlgroup); 	if ($skin_dir)		$latest_skin_path = "$g4[path]/skin/latest/$skin_dir";	else		$latest_skin_path = "$g4[path]/skin/latest/$config[cf_latest_skin]"; 	for ($j=0, $k=0; $rowgroup=sql_fetch_array($rsgroup); $j++) {		$bo_table = $rowgroup[bo_table]; 		// 테이블 이름구함		$sql = " select * from {$g4[board_table]} where bo_table = '$bo_table' ";		$board = sql_fetch($sql); 		$tmp_write_table = $g4[write_prefix] . $bo_table; // 게시판 테이블 실제이름		// 옵션에 따라 정렬		$sql = "select * from $tmp_write_table where wr_is_comment = 0 ";		// $sql .= "and wr_datetime > ( now() - interval 512 hour) ";		$sql .= (!$category) ? "" : " and ca_name = '$category' ";		$sql .= (!$orderby) ? "  order by wr_hit desc " : "  order by wr_id desc ";		$sql .= " limit $limitrows"; 		$result = sql_query($sql); 		for ($i=0; $row = sql_fetch_array($result); $i++, $k++) { 			if(!$orderby) $op_list[$k] = $row[wr_datetime];			else  {				$op_list[$k] = is_string($row[$orderby]) ? sprintf("%-256s", $row[$orderby]) : sprintf("%016d", $row[$orderby]);				$op_list[$k] .= $row[wr_datetime];			} 			$list[$k] = get_list($row, $board, $latest_skin_path, $subject_len); 			$list[$k][bo_table] = $board[bo_table];			$list[$k][bo_subject] = $board[bo_subject]; 			$list[$k][bo_wr_subject] = cut_str($board[bo_subject] . $list[$k][wr_subject], $subject_len);		}	}	if($k>0) array_multisort($op_list, SORT_DESC, $list);	if($k>$rows) array_splice($list, $rows); 	ob_start();	include "$latest_skin_path/latest.skin.php";	$content = ob_get_contents();	ob_end_clean();	return $content;}/// 함수 정의 끝 ?>

여기서 변경을 해줘야 할까요 아니면 다른 파일을 수정해야 하나요 고수님들

도와주세요

|

답변 1개 / 댓글 2개

2014-09-30 (화) 16:10:55

문제가 뭔가요?


답변에 대한 댓글 2개

같은 그룹내에 있는 게시판의 게시물들 중에서 추천수가 많은 순으로 최신글로 뽑아오려고 하는데
그게 잘 안되서요..
정렬 방식만 wr_good으로 하면 되지 않나요?
소스 보니까 될 듯한데요

답변을 작성하려면 로그인이 필요합니다.