无法回显该值
我只是尝试从 mysql 数据库检索一个值,并尝试使用 php 函数打印该值。但这不起作用:(请帮忙。
<?php
include("connection.php");
$con=mysql_query("SELECT times FROM counts WHERE item='applemenu';");
$info = mysql_fetch_array($con);
$count==$info['times'];
?>
在一些 html 标签之后
<?php echo $count;?>
有什么问题吗?
I just tried to retrieve a value from my mysql databade and tried to print that using php function. But this is not working :( Please help.
<?php
include("connection.php");
$con=mysql_query("SELECT times FROM counts WHERE item='applemenu';");
$info = mysql_fetch_array($con);
$count==$info['times'];
?>
after some html tags
<?php echo $count;?>
Is there anything wrong ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将此更改为
change this to
在一些 html 标签之后
after some html tags