PHP 개발 소규모 포럼 튜토리얼 포럼 섹션
포럼 구축의 첫 번째 단계부터 시작하겠습니다
첫 번째 단계는 홈페이지에서 시작됩니다. 데이터베이스의 정보를 읽는 것입니다. 메인 페이지 는 '포럼' 테이블 에 있는 모든 포럼 섹션을 순환하는 것입니다. 기본 지식이 있는 사람들에게는 쿼리 문이 매우 쉽습니다. <?php
header("Content-type:text/html;charset=utf-8"); //设置编码
$servername = "localhost";
$username = "root";
$password = "root";
$dbname = "mybbs";
// 创建连接
$conn = mysqli_connect($servername, $username, $password, $dbname);
mysqli_set_charset($conn,'utf8'); //设定字符集
$sql="select * from forums";
$que=mysqli_query($conn,$sql);
while($row=mysqli_fetch_array($que)){
echo "论坛 :".$row['forum_name'];
}
?>
이렇게 실행하면 페이지는 아무것도 출력하지 않습니다. 방금 생성한 데이터베이스에 데이터가 없기 때문입니다! 그래서 포럼 섹션이 없고 "죄송합니다. 포럼은 아직 준비 중입니다..."라는 문구가 출력되어야 한다면 어떻게 될까요? ? mysql_num_rows()를 사용하여 결과 수를 얻을 수 있습니다. 코드는 다음과 같습니다. <?php
header("Content-type:text/html;charset=utf-8"); //设置编码
$servername = "localhost";
$username = "root";
$password = "root";
$dbname = "mybbs";
// 创建连接
$conn = mysqli_connect($servername, $username, $password, $dbname);
mysqli_set_charset($conn,'utf8'); //设定字符集
$sql="select * from forums";
$que=mysqli_query($conn,$sql);
$sum=mysqli_num_rows($que);
if($sum){
while($row=mysqli_fetch_array($que)){
echo "论坛 :".$row['forum_name'];
}
}else{
echo "对不起,论坛正在建设中,感谢你的关注......";
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>论坛</title>
<style>
table{
width: 55%;
margin-top: 10px;
}
.title{
background-color: #B10707;
font-size: 17px;
color: white;
}
.right{
margin-left: 120px;
}
</style>
</head>
<body>
<table border="1px" cellspacing="0" cellpadding="8"align="center">
<tr class="title">
<td COLSPAN="3">
论坛列表<span class="right">[<a style="color: white" href="add_forum.php">添加</a> ]</span>
</td>
</tr>
<tr>
<td width="10%"><strong>主题</strong></td>
<td width="40"><strong>论坛</strong></td>
<td width="15"><strong>最后更新</strong></td>
</tr>
<?php
$sql="select * from forums";
$que=mysqli_query($conn,$sql);
$sum=mysqli_num_rows($que);
if($sum>0) {
while ($row = mysqli_fetch_array($que)) {
?>
<tr>
<td><?php echo $row['subject'] ?></td>
<td><?php echo "<div class=\"bold\"><a class=\"forum\" href=\"forums.php?F=" . $row['id'] . "\">" . $row["forum_name"] . "</a></div>"
. $row["forum_description"] ?></td>
<td>
<div><?php echo $row["last_post_time"]?></div>
</td>
</tr>
<?php
}
}else{
echo "<tr><td colspan='3'>对不起,论坛正在建设中,感谢你的关注......</td></tr>";
}
?>
</table>
</body>
</html>
이제 코드는 다음과 같습니다. 아직 데이터베이스에 데이터가 없어서 홈페이지를 실행하면 "죄송합니다. 포럼은 아직 공사 중입니다..."라는 메시지만 표시됩니다. 우리는 정말로 결과를 보고 싶기 때문에 다음으로 데이터베이스에 몇 가지 데이터 조각을 추가해 보겠습니다!