php에서는 간단한 게시판 기능을 구현했습니다.
1. 원리
쉽게 말하면 데이터베이스를 생성하고 데이터를 추가하여 프론트엔드에 표시하는 것입니다. 내 프로그램은 단순히 메시지를 남긴 다음 표시하는 것입니다.
먼저 메시지의 첫 페이지를 작성하고 작성자, 제목, 내용을 작성하세요.
2. 인터페이스 :
3. 메시지 표시 인터페이스 :
4. 메시지 추가 페이지
rreee( 2) 메시지의 백그라운드 처리, 작성자, 제목 및 내용을 구축된 데이터베이스에 저장
<!DOCTYPE HTML> <HTML> <Head> <meta http-equiv="CONTENT-TYPE" ; content="text/html" ; charset="UTF-8"> <title>留言</title> <style type="text/css"> .message{ margin-top:0px; } h1{ margin-top:200px; } </style> </Head> <Body> <h1 align="center">留言板</h1> <div class="message"> <form name="addform" id="addform" method="post" action="message_handle.php"> <table type="text" align="center" border="1px,solid"> <input type="hidden" id="id" name="id" /> <tr> <td>标题</td> <td><input type="text" name="title" id="title"/></td> </tr> <tr> <td>作者</td> <td><input type="text" name="author" id="author"/> </td> </tr> <tr> <td>内容</td> <td><textarea name="message" id="message" cols="60" role="15"></textarea></td> </tr> <tr> <td><input type="submit" name="sumbit"/></td> <td><input type="reset" name="reset"/></td> </tr> </table> </form> </div> </Body> </HTML>
(3) 다음은 메시지를 표시하는 페이지 코드입니다
<?php header("CONTENT-TYPE:text/html;charset=UTF-8"); define("HOST","127.0.0.1"); define("USERNAME","root"); define("PASSWORD",""); if($con=new mysqli(HOST,USERNAME,PASSWORD,"test")){ echo $con->error; } if($con->select_db("messageboard")){ echo $con->error; } if($con->query("SET NAMES utf8")){ echo $con->error; } $id=$_POST["id"]; $title=$_POST["title"]; $author=$_POST["author"]; $message=$_POST["message"]; $time=date('y-m-d h:m:s'); $sql="insert into messageboard(id,title,author,message,dateline) values('$id','$title','$author','$message','$time')"; if($str=$con->query($sql)){ echo "<script>alert('留言成功');window.location.href='show_message.php'</script>"; } else { echo "<script>alert('留言失败');window.location.href='messageboard.php'</script>"; } ?>
5. 처음에는 표시 페이지에 데이터가 표시되지 않았습니다. 원인을 오랫동안 검색한 결과 SQL에서 쿼리 메서드가 잘못 작성된 것으로 나타났습니다.
<?php header("CONTENT-TYPE:text/html;charset=UTF-8"); define("HOST","127.0.0.1"); define("USERNAME","root"); define("PASSWORD",""); if($con=new mysqli(HOST,USERNAME,PASSWORD,"test")){ echo $con->error; } if($con->select_db("messageboard")){ echo $con->error; } if($con->query("SET NAMES utf8")){ echo $con->error; } $sql="select * from messageboard ORDER BY dateline DESC "; $str=$con->query($sql); if($str && mysqli_num_rows($str)){ while($row= mysqli_fetch_assoc($str)){ $data[]=$row; } } ?> <!DOCTYPE HTML> <HTML> <Head> <meta http-equiv="CONTENT-TYPE" ; content="text/html" ; charset="UTF-8"> <title>留言板</title> <style type="text/css"> </style> </Head> <Body> <div> <?php if(empty($data)){ echo "当前没有留言"; } else{ foreach($data as $value) { ?> <table cellpadding="2" cellspacing="8" align="center" border="1px,solid"> <tr> <td>标题</td> <td><?php echo $value['title']; ?></td> </tr> <tr> <td>作者</td> <td><?php echo $value['author']; ?></td> </tr> <tr> <td>内容</td> <td><?php echo $value['message']; ?></td> </tr> <tr> <td><?php echo $value['dateline'];;?></td> </tr> </table> </div> <?php } } ?> </Body> </HTML>
select * from message where dateline desc;
select * from message where dateline=$date;
PHP Tutorial
"에서 복제되었습니다.
위 내용은 PHP는 간단한 게시판 기능을 구현합니다(소스코드 첨부)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!