永发信息网

关于php留言板的滴错误问题

答案:3  悬赏:40  手机版
解决时间 2021-07-25 12:52
  • 提问者网友:浪荡绅士
  • 2021-07-25 02:09

下面是我写得这段...

不晓得错哪里了.

如上图.并未调出相应内容.

<?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>

最佳答案
  • 五星知识达人网友:躲不过心动
  • 2021-07-25 02:50
你确定你的php的短标签开了?没开就不能用:<?=$row[user]?>这个来输出数据asp带来的恶习啊
全部回答
  • 1楼网友:一叶十三刺
  • 2021-07-25 04:05
<?=$row[content] ?>改成:<? echo $row[content] ?>
  • 2楼网友:风格不统一
  • 2021-07-25 03:17
<?php echo $row[content]; ?>
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯