댓글수정시 닉네임과 날짜 변경 팁좀..
본문
사이트 초기에는 댓글등록 작업을 해야 하는데
어드민일때 댓글수정시 닉네임과 날짜변경 할 수 있는 팁좀 알려주세요
날짜팁은
<?php
//echo $comment_id;
$sql_comment = " select wr_id, wr_datetime from $write_table where wr_id = '$comment_id' ";
//echo $sql_comment;
$result_comment = sql_query($sql_comment);
while($row_comment = mysql_fetch_array($result_comment)) {
//echo $comment_id;
?>
<input type="hidden" name="cid" value="<?php echo $comment_id; ?>" />
작성일 <input required style="width:140px;" name="cdate" maxlength="19" value="<?php echo $row_comment[wr_datetime]; ?>" />
<input type="submit" name="submit" value="수정" />
<?php
}
?>
view_comment_dateupdate.php 파일에도 업데이트정보 넣어야 하고..
도와주세요 ㅠㅠ