php開發留言板之查看留言


「建立檔案list.php

#
<!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"><a href="add.html">返回留言</a> </td>
     </tr>
 </table>
 </html>

引入css樣式檔案和conn資料庫檔案

<?php
    $sql="select * from message order by id desc";
    $query=mysql_query($sql);
    while($row=mysql_fetch_array($query)){ 
    } ?>

連接message資料庫進行倒敘排序

#mysql_query進行查詢

mysql_fetch_array()-取得和顯示資料格式
然後把所需的資料分別寫出來

寫到這留言板基本上已經成型了,後面可以為留言板添加刪除功能,讓其更為完善。


本章重點:

  1. 在html語句中插入php語句,HTML和PHP的混編。

  2. 使用倒敘的方式顯示數據,最新的放在最前面,更能符合人們使用的習慣。

  3. mysql_query進行查詢和mysql_fetch_array()-取得和顯示資料格式這兩個方法的使用。

#
繼續學習
||
<!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">< a href=" ">返回留言</ a> </td> </tr> </table> </html>