최근에 읽은 게시물 표시 > 그누4 질문답변

그누4 질문답변

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

최근에 읽은 게시물 표시 정보

최근에 읽은 게시물 표시

본문

아무래도 이 기능을 좀 해보고 싶은데요.
전 않되네요.
혹시 포인트를 받거나 사용한 내용(point.php)를 이용해서
자기가 A라는 게시판에서 활동한 내용 가운데
읽은 게시물 목록을 추출할 수 없을까요?
답변 주시면 너무 감사하겠습니다.
  • 복사

댓글 전체

<table  width="100%" cellpadding=0 cellspacing=0>
<tr>   
  <td>
<?
 //게시판에서 자기가 본글추출: 포인트테이블 이용.
 $po_table="aaa_table"; //테이블 id 수정하세요.
 $po_sql = @mysql_query("select * from g4_point  where (po_rel_table='$po_table' "
 ." and mb_id='{$member[mb_id]}' and po_rel_action='읽기') "
 ." order by po_datetime desc limit 0,100");
 while($po_data = @mysql_fetch_array($po_sql))
 {
 echo"<a href='$g4[path]/bbs/board.php?bo_table={$po_data[po_rel_table]}&wr_id={$po_data[po_rel_id]}'>"
 ."내용:{$po_data[po_content]}&nbsp;&nbsp;글번호:{$po_data[po_rel_id]}<br>";
 }
?>
</td></tr>
</table>
© SIRSOFT
현재 페이지 제일 처음으로