PHP开发之留言板展示页面
我们如果想让我们发布的留言跟首页展示在一起,就需要利用我们的HTML和PHP语言混合运用,看下面的代码
我们已经从HTML页面发布了留言成功,说明数据已经成功存入了数据库,我们只需要从数据库把这些数据读取出来,代码如下
<?php
session_start();
header("content-type:text/html;charset=utf-8");
$conn=mysqli_connect("localhost","root","root","Ressage");
mysqli_set_charset($conn,'utf8'); //设定字符集
$sql= "select * from ressage_user;
$result=mysqli_query($conn,$sql);
?>
session_start();
header("content-type:text/html;charset=utf-8");
$conn=mysqli_connect("localhost","root","root","Ressage");
mysqli_set_charset($conn,'utf8'); //设定字符集
$sql= "select * from ressage_user;
$result=mysqli_query($conn,$sql);
?>
上面的两行代码就可以让我们从数据库把数据查询出来,
难的是怎么让它在html页面按指定的格式展现出来,看下面的代码
<p> <? if($result==null){ echo"暂时没有留言"; } ?> </p> <?php while($row=mysqli_fetch_array($result)){ ?> <table border="1" cellspacing="0"> <tr> <td>姓名:<?php echo $row['name']?></td> <td style="text-align: center">留言时间:<?php echo $row['ressage_time']?></td> <td><a href="ressage_delete.php?id=<?php echo $row['id']?>" >删除</a> </td> </tr> <tr> <td colspan="3">你的留言:<?php echo $row['content']?></td> </tr> </table> <?php }?>
上面的代码就是我们的HTML和PHP的混编,我们首先把我们数据库里的数据以数组的形式读取出来,然后我们在取相应的字段,循环出来。把上面的代码组合起来就可以把我们的数据读取展示出来,但是我们还要将这些代码跟我们的首页代码放到一起,所以,这些代码还需要进一步的组合,看下一章节