게시판에 자신이 쓴 글을 바로 가기??
본문
게시판에 글을 한개만 쓰도록 막았습니다.
/bbs/wirte.php
// 1건만 등록
if ($bo_table == "report" && $w == "") {
$mygoodscnt = @mysql_result(mysql_query("select count(wr_id) from g5_write_report where mb_id = '${member['mb_id']}' and wr_is_comment = '0'"),0,0);
if($mygoodscnt > 0) {
alert("리포트는 1건만 가능합니다.", G5_URL);
}
}
자신이 쓴 글을 수정하려고합니다.
(물론 검색해서 ..글을 찾아 수정하면 되지만, )
글이 점점 많아지면서...첫 페이지가 아닌 다른 페이지로 넘어가면서 글을 찾아야함
아래에 특정 버튼(자신글수정)을 눌러 자신글을 수정하도록 하려합니다.
(자신글이 없으면 "수정할 글이 없습니다." 이렇게 나오면 좋을듯하네요)
!-->
답변 1
list.skin.php에 아래 소스 추가 하면 되겠네요.
<?php
if($is_member) {
$sql = "select wr_id from $write_table where mb_id = '{$member['mb_id']}' ";
$row = sql_fetch($sql);
if($row['wr_id']) {
echo '<a href="./write.php?bo_table='.$bo_table.'&w=u&wr_id='.$row['wr_id'].'">내글수정하기</a>';
}
}
?>
답변을 작성하시기 전에 로그인 해주세요.