PHP项目:留言板开发(查看功能)

2021-10-09 15:59:18 浏览数 (1)

list.php

代码语言:javascript复制
<!DOCTYPE html>
 <html lang="utf-8">
 <head>
 <?php
 include ("conn.php");
 ?> 
 <link href="css.css" rel="stylesheet" type="text/css">
 </head>
 
 
 <table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef" >
 <?php
 $sql="select * from message order by id desc";
 $query=mysql_query($sql);
 while($row=mysql_fetch_array($query)){ ?>
 
 <tr bgcolor="#eff3ff">
 <td>标题: <?php echo $row['title'];?> <font color="red">用户: <?php echo $row['user'];?> </td>
 </tr>
 <tr bgColor="#ffffff">
 <td>发表内容:<?php echo $row['content'];?></td>
 </tr>
 <tr bgColor="#ffffff">
 <td><div align="right">时间:<?php echo $row['lastdate'];?></td>
 </tr>
 <?php } ?>
 <tr bgcolor="#f0fff0">
 <td><div align="right"></td>
 </tr>
 </table>
 </html>

地址栏上输入:localhost/list.php

0 人点赞