下面是我写得这段...
不晓得错哪里了.
如上图.并未调出相应内容.
<?php
include("conn.php");
include("index.php");
$SQL="SELECt * FROM message order by id desc";
$query=mysql_query($SQL);
while($row=mysql_fetch_array($query)){
?>
<table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef">
<tr bgcolor="#eff3ff">
<td>标题:<?=$row[title]?> 用户:<?=$row[user]?></td>
</tr>
<tr bgColor="#ffffff">
<td>内容:<?=$row[content]
?></td>
</tr>
<?php
}
?>
</table>