使用<?= ?>读不出数据

WBOY
Release: 2016-06-23 13:52:45
Original
1146 people have browsed it

include("conn.php"); 

?>


$sql="select * from message";
$query=mysql_query($sql);
while($row=mysql_fetch_array($query)){
?>
  
  
  
  
  
  
    }
  ?>
标题:=$row['title']?> 用户:=$row['user']?>
内容:=$row['content']?>

=$row['title']?>读不出数据,但就可以读出数据,为什么?菜鸟求指点


回复讨论(解决方案)

php 5.4 以下需要打开短标记功能
short_open_tag = On

木有开启短标签支持。

查看php.ini 
short_open_tag = on 

开启php短标签

个人建议不使用短标签,还是尽量写完全了,如果哪天你用的不是服务器,而是空间的话(并且空间没开短标签的功能),你是没有权限修改这些的,代码还得重写
以上仅供参考

phpinfo();
?>

看看short_open_tag是否on,如果不是,?入php.ini修改便可。

php5.4 开始,无论 short_open_tag 开关是否打开
= ?> 总是有效的

虽然现在的人很富有,但也不必要把 = 奢侈的写作 php echo

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template