<td>标题: <?=$result[title]?> </td> 请问一下在php中这个等号是什么意思?
<?phpinclude("conn.php");?><table><?php$sql="select*frommessages";$query=@mysql_query...
<?php
include("conn.php");
?>
<table >
<?php
$sql="select * from messages";
$query=@mysql_query($sql) or die ("错误");
while($result=mysql_fetch_array($query)){
?>
<tr> <td>标题: <?=$result[message_title]?> </td> <td> 用户名:<?=$result[message_user]?> </td> </tr>
<tr> 内容:<?=$result[message_content]?> </tr>
<?php
}
?>
</table> 展开
include("conn.php");
?>
<table >
<?php
$sql="select * from messages";
$query=@mysql_query($sql) or die ("错误");
while($result=mysql_fetch_array($query)){
?>
<tr> <td>标题: <?=$result[message_title]?> </td> <td> 用户名:<?=$result[message_user]?> </td> </tr>
<tr> 内容:<?=$result[message_content]?> </tr>
<?php
}
?>
</table> 展开
2个回答
展开全部
<?=$result['title']?>
等于
<?php echo $result['title']; ?>
常用于html模板文件内作为php变量输出,这是简写
<?=$result[message_title]?>
缺了引号吧
<?=$result['message_title']?>
等于
<?php echo $result['title']; ?>
常用于html模板文件内作为php变量输出,这是简写
<?=$result[message_title]?>
缺了引号吧
<?=$result['message_title']?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
php中没有这样的写法吧,应该是这样的<?php echo $result['title']?>
你上面写的有点和jsp中混淆了
你上面写的有点和jsp中混淆了
追问
=表示输出
$row为数组,$row[title]里的title为$row数组里的一个下标
$row多数用在数据库读取,所以这里是显示数据库中的title字段
但是读不出数据库内容
追答
规范的写法应该是用这个只要你能查询出来值就肯定能输出。先试试这个能不能输出;刚才测试了一下你上面的用法没有问题,如果要是不能输出的话你需要检测你的数据库里面的数据了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询