특정 게시판의 특정 분류만 뽑기

매출이 오르면 내리는 수수료! 지금 수수료센터에서 전자결제(PG)수수료 비교견적 신청해 보세요!
특정 게시판의 특정 분류만 뽑기

QA

특정 게시판의 특정 분류만 뽑기

답변 2

본문

안녕하세요 

다른페이지에서 특정 게시판의 특정 카테고리 게시글의 제목을 for문으로 뽑고 싶습니다

예를들어 
이용권이라는 게시판에 단체라는 카테고리가 있고 여기에는 단체A , 단체B, 단체C 라는 게시글이 있습니다

단체A, 단체B, 단체C는 게시글 제목이구요

 

이 때,

test.php 페이지에 쿼리로

"이용권게시판-단체-제목들 " 출력을 어떻게 해야할까요...?

이걸 select안에 option 항목으로 넣고싶습니다

<select>

   <option value="단체A">단체A</option>

   <option value="단체B">단체B</option>

   <option value="단체C">단체C</option>

</select>

 

위에처럼요..!

이 질문에 댓글 쓰기 :

답변 2


<?php
include_once('../common.php');

$bo_table = 'ticket'; // 이용권 게시판의 ID
$write_table = $g5['write_prefix'] . $bo_table; // 게시판 테이블
 
// 단체 카테고리의 게시글 가져오기
$sql = " select wr_id, wr_subject 
         from {$write_table}
         where ca_name = '단체' 
         and wr_is_comment = 0
         order by wr_id desc ";
$result = sql_query($sql);
?>
<select name="group_select" id="group_select">
  <option value="">선택하세요</option>
  <?php
  for ($i=0; $row=sql_fetch_array($result); $i++) {
  ?>
  <option value="<?php echo $row['wr_subject']; ?>"><?php echo $row['wr_subject']; ?></option>
  <?php
  }
  ?>
</select>

<select>
<?php
$bo_table = 'table'; // 게시판 테이블명
$write_table = $g5['write_prefix'] . $bo_table;
 
$sql = " select wr_subject from {$write_table} where wr_is_comment = 0 order by wr_num ";
$result = sql_query($sql);
while( $row=sql_fetch_array($result) ) {
    $subject = $row['wr_subject'];
?>
<option value="<?php echo $subject; ?>"><?php echo $subject; ?></option>
<?php
}
?>
</select>

이런식이면 되지 않을까요..??

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 1
© SIRSOFT
현재 페이지 제일 처음으로