]입니다. 2. 주석을 따라 응답하면 코드는 [type= '제출' 값 = '답장']."/> ]입니다. 2. 주석을 따라 응답하면 코드는 [type= '제출' 값 = '답장'].">
PHP에서 댓글 기능을 구현하는 방법: 1. 댓글 텍스트 필드를 설정합니다. 코드는 [ type="submit" value="comment" />]입니다. 2. 답글이 포함된 댓글을 따르세요. 코드는 다음과 같습니다. [유형='제출' 값='답장'].
PHP에서 댓글 기능을 구현하는 방법:
1. 댓글 게시
<form action="pinglunchili.php" method="post"> <textarea name="content"></textarea> <div><input type="submit" value="评论" /></div> </form>
댓글의 텍스트 필드입니다.
댓글 뒤의 내용은 데이터베이스에 저장되어야 합니다. 처리용
간단한 댓글과 답글을 구현하기 위한 것이므로 로그인 권한이 없으므로 이름을 모두 추가합니다
<?php $yonghu="caocao"; $content=$_POST["content"]; $time = date("Y-m-d H:i:s"); require "DBDA.class.php"; $db=new DBDA(); $sql="insert into pinglun values('','{$yonghu}','{$content}','{$time}')"; if($db->query($sql,0)) { header("location:pinglun.php"); } else { echo "你输入错误!"; }
2 여기 답글 기능은 댓글과 답글이 뒤따르는 기능입니다
<?php require "DBDA.class.php"; $db=new DBDA(); $sql="select * from pinglun"; $arr=$db->query($sql); foreach($arr as $v) { echo "<div>{$v[0]}</div> <div>{$v[1]}</div> <div>{$v[2]}</div> <div>{$v[3]}</div> <form action='huifuchuli.php?id={$v[0]}' method='post'> <input type='text' name='Comment' /> <input type='submit' value='回复' /></form>"; $dc = new DBDA(); $sql1="select * from huifu where jieshouid={$v[0]}"; $arr1=$dc->query($sql1); foreach($arr1 as $f) { echo "<div style='color:red'>{$f[0]}</div> <div style='color:red'>{$f[2]}</div> <div style='color:red'>{$f[3]}</div> <div style='color:red'>{$f[4]}</div> "; } } ?>
Traverse. 댓글의 내용과 답글의 내용을 그대로 표시해 주면
이렇게 하면 댓글 뒤에 답글이 오는 것을 알 수 있습니다
3. 그런 다음 정보를 삭제합니다
앞에 삭제 버튼을 추가하는 것입니다. 응답 중
<form action='shanchuchuli.php?id={$v[0]}' method='post'> <input type='submit' value='删除' /></form> <form action='huifuchuli.php?id={$v[0]}' method='post'> <input type='text' name='Comment' /> <input type='submit' value='回复' /></form>";
처리 페이지
<?php $id = $_GET["id"]; require "DBDA.class.php"; $db=new DBDA(); $sql="delete from pinglun where id='{$id}'"; if($db->query($sql,0)) { header("location:pinglun.php"); } else { echo "不能删除!"; }
사진에 표시되는 삭제 버튼
효과를 사용해 보세요:
관련 학습 권장 사항: 초보에서 마스터까지 PHP 프로그래밍
위 내용은 PHP에서 주석 기능을 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!