PHP 개발 소규모 포럼 튜토리얼 새 게시물 게시-2
이 페이지는 주로 게시 페이지 addnew.php에서 전달된 데이터를 처리한 후 데이터베이스에 저장합니다.
코드는 다음과 같습니다
<?php header("Content-type:text/html;charset=utf-8"); //设置编码 $author=$_POST['author']; $title=$_POST['title']; $content=$_POST['content']; $last_post_time=date("Y-m-d H:i:s"); $servername = "localhost"; $username = "root"; $password = "root"; $dbname = "mybbs"; // 创建连接 $conn = mysqli_connect($servername, $username, $password, $dbname); mysqli_set_charset($conn,'utf8'); //设定字符集 $sql="insert into tiopic(author,title,content,last_post_time) values('$author','$title','$content','$last_post_time')"; $que=mysqli_query($conn,$sql); if($que){ echo "<script>alert('发布成功');location.href='forums.php';</script>"; }else{ echo "<script>alert('好像有点小问题......');location.href='addnew.php';</script>"; } ?>
이제 게시물을 게시하고 사용해 볼 수 있습니다