게시판에 익명 기능
본문
게시판에 익명 기능을 넣고 싶습니다.
탑스쿨님이 공개 해주신 익명게시판
http://sir.co.kr/g5_skin/1289?sfl=wr_subject%7C%7Cwr_content&stx=%EC%9D%B5%EB%AA%85
일반 베이직 게시판에
체크박스를 넣고 익명을 사용하고 싶습니다. (원글 / 댓글)
탑스쿨님이 올려주신 파일을 보니
view_comment.skin.php
<?php
if ($w == 'c') {
sql_query(" update {$write_table} set mb_id = '', wr_name = '익명' where wr_id = '{$comment_id}' ");
sql_query(" update {$g5['board_new_table']} set mb_id = '' where bo_table = '{$bo_table}' and wr_id = '{$comment_id}' ");
} else if ($w == 'cu') {
sql_query(" update {$write_table} set mb_id = '', wr_name = '익명' where wr_id = '{$comment_id}' ");
}
?>
와
write_update.skin.php
<?php
if ($w == '' || $w == 'r') {
sql_query(" update {$write_table} set mb_id = '', wr_name = '익명' where wr_id = '{$wr_id}' ");
sql_query(" update {$g5['board_new_table']} set mb_id = '' where bo_table = '{$bo_table}' and wr_id = '{$wr_id}' ");
} else if ($w == 'u') {
sql_query(" update {$write_table} set mb_id = '', wr_name = '익명' where wr_id = '{$wr['wr_id']}' ");
}
?>
파일이 추가 되어있습니다.
이걸 응용해서 게시물 작성 또는 댓글 작성시 익명체크 할 수 있게 하고싶습니다.
!-->!-->
답변 2
<script>
$(function(){
$("#체크박스 id명").click(function(){
var chk = $(this).is(":checked");
if(chk) $(".이름넣는input 클래스명").val('익명');
else $(".이름넣는input 클래스명").val('');
});
</script>
$(function(){
$("#체크박스 id명").click(function(){
var chk = $(this).is(":checked");
if(chk) $(".이름넣는input 클래스명").val('익명');
else $(".이름넣는input 클래스명").val('');
});
</script>
기본 그누 게시판에서
이름을 적는곳에 체크박스를 두어서
자바스크립트(or jquery)를 이용
체크박스 누를 때 이름 적는 input 값에 익명이라고 들어가게 하면 됩니다.
아니면 체크만하고 체크값을 넘겨서 다른 파일에서 처리해도 되겠고요.
답변을 작성하시기 전에 로그인 해주세요.