作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从我的 php 脚本中的 div 中回显一个变量,但我没有得到任何结果。这是我的代码:
<?php
session_start();
session_name();
$con = mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("bloggers", $con) or die(mysql_error());
$data = "Select * from accountprofile where Username = '" . $_SESSION['Sess_user'] . "' and Password = '" . $_SESSION['Sess_pass'] . "'";
$result = mysql_query($data);
while($row = mysql_fetch_array($result)) {
$row['Fname'];
$row['Username'];
$row['Password'];
}
mysql_close($con);
?>
这是我的 div,我想在其中显示变量 $row['Fname'];
<div class="title" style="font-size: 36px;">
<?php echo $row['Fname']; ?>
</div>
对不起,我是 html 和 php 的新手。请帮忙谢谢。
最佳答案
变量 $row 只是循环作用域。您正在 while 内部创建此变量,它只会存在于那里。
关于php - 如何在div中回显php变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14731748/
我是一名优秀的程序员,十分优秀!