탭 최신글에 wr_7 기준으로 각각 넣을려면 어떻게 해야 되나요?

· 17년 전 · 910 · 2
wr_7 이 남자와 여자로 구분이 되어있다면
각 탭에 첫번째 탭에는 남자로 등록된 게시물만 출력, 두번째 탭에는 여자로 등록된 게시물만 출력 이런식으로 출력을 어떻게 하나요?
최신글에서 뽑는법은 알겠는데 탭에서 뽑는방법을 모르겠네요
|

댓글 2개

function latest2($skin_dir="", $bo_table, $rows=10, $subject_len=40, $options="", $wr_7)
{
global $g4;

if ($skin_dir)
$latest_skin_path = "$g4[path]/skin/latest/$skin_dir";
else
$latest_skin_path = "$g4[path]/skin/latest/basic";

$list = array();

$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 order by wr_id desc limit 0, $rows ";
// 위의 코드 보다 속도가 빠름
$sql = " select * from $tmp_write_table where wr_is_comment = 0, wr_7=$wr_7 order by wr_num limit 0, $rows ";
//explain($sql);
$result = sql_query($sql);
for ($i=0; $row = sql_fetch_array($result); $i++)
$list[$i] = get_list($row, $board, $latest_skin_path, $subject_len);

ob_start();
include "$latest_skin_path/latest.skin.php";
$content = ob_get_contents();
ob_end_clean();

return $content;
}


<?=latest2(스킨, 보드, 줄, 제목길이, 옵션, 남자);?>

<?=latest2(스킨, 보드, 줄, 제목길이, 옵션, 여자);?>

과 같이 하면 되지 않을까요....
답변감사합니다^^ 한번 시도 해볼께요^^
댓글을 작성하시려면 로그인이 필요합니다.

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기 기존 게시물은 열람만 가능합니다.

+
제목 글쓴이 날짜 조회
17년 전 조회 806
17년 전 조회 999
17년 전 조회 870
17년 전 조회 975
17년 전 조회 912
17년 전 조회 748
17년 전 조회 892
17년 전 조회 956
17년 전 조회 771
17년 전 조회 911
17년 전 조회 2,731
17년 전 조회 808
17년 전 조회 974
17년 전 조회 771
17년 전 조회 815
17년 전 조회 1,729
17년 전 조회 844
17년 전 조회 995
17년 전 조회 943
17년 전 조회 975