PHP100里面的留言板
<?phpinclude("conn.php");?><tablewidth=500border="0"align="center"cellpadding="5"cell...
<?php
include("conn.php");
?>
<table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef">
<?php
$sql="select * from message ";
$query=mysql_query($sql);
while($row=mysql_fetch_array($query)){
?>
<tr bgcolor="#eff3ff">
<td>标题:<?=$row['title']?>用户:<?=$row['user']?></td>
</tr>
<tr>
<td>内容:<?=$row['content']?></td>
</tr>
<?php
}
?>
</table>
怎么输出的内容什么的都是空的什么也没有呢??? 展开
include("conn.php");
?>
<table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef">
<?php
$sql="select * from message ";
$query=mysql_query($sql);
while($row=mysql_fetch_array($query)){
?>
<tr bgcolor="#eff3ff">
<td>标题:<?=$row['title']?>用户:<?=$row['user']?></td>
</tr>
<tr>
<td>内容:<?=$row['content']?></td>
</tr>
<?php
}
?>
</table>
怎么输出的内容什么的都是空的什么也没有呢??? 展开
2011-05-03
展开全部
while($row=mysql_fetch_array($query)){
改成
while($row=mysql_fetch_assoc($query)){
改成
while($row=mysql_fetch_assoc($query)){
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-05-03
展开全部
朋友,你还在原始的编程?建议用用简单php框架,很简单!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询