반응형
안녕하세요
군대를 다녀오느라
여기부터 17년 작입니다.
댓글 달기를 해보겠습니다.
먼저 mysql 테이블을 만들어보겠습니다.
mysql> create table comment_free( co_no int unsigned not null primary key auto_increment,b_no int unsigned not null, co_order int unsigned default 0, co_content text not null, co_id varchar(20) not null, co_pw varchar(100) not null); |
네 이렇게 table을 만들어주고 이제 댓글다는 comment.php를 만들어봅시다.
comment.php |
<? session_start(); ?> <form action="comment_update.php" method ="post"> <input type ="hidden" name="bno" value="<?=$id?>"> <input type="hidden" name="no" value="<?=$no?>"> <table> <tbody> <tr> <th scope="row"><label for="cold">아이디</label></th> <td><input type="text" name="cold" id="cold" value="<?=$_SESSION['id']?>" readonly></td> </tr> <tr> <th scope="ROW"<label for="coPassword">패스워드</label></th> <td><input type="password" name="coPassword" id="coPassword"></td> </tr> <tr> <th scope="row"><lavel for="coContent">내용</label></th> <td><textarea name="coContent" id="coContent"></textarea></td> </tr> </tbody> </table> <div class="btnSet"> <Input type="submit" value="코멘트 작성"> </div> </form> |
이 comment.php는 read.php의 아래에 include를 해줍니다!
그러면 본문밑에 댓글 작성부분이 있겠죠??
read.php 아래에 </body>태그 바로 위에
<?
include "comment.php";
mysql_close($conn);
?>
을 삽입해줍니다!
그러면 이러한 페이지가 됩니다.!
다음엔 comment_update.php 페이지를 작성해 볼게요!
(그렇게 이쁘진 않네요 (속삭속삭))
반응형
'IT > PHP' 카테고리의 다른 글
19##]PHP로 홈페이지 만들기>댓글 완료 (0) | 2017.04.22 |
---|---|
17##]PHP로 홈페이지 만들기>게시글 삭제, 삭제완료 (0) | 2017.04.22 |
16##]PHP로 홈페이지 만들기>글 수정 완료 (0) | 2017.04.22 |