gpt4 book ai didi

php - 查询结果在html中的布局

转载 作者:行者123 更新时间:2023-11-28 11:20:37 24 4
gpt4 key购买 nike

我试图以某种方式在页面上排列配置文件信息,但我不知道如何使用 HTML/CSS 将查询结果定位到我想要的位置。

HTML:

<div id="divFirstnameHeading">
<h3>New Firstname: </h3>
</div>
<div id="divFirstnameInput">
<input type="text" id="txtEditFirstname" size="32">
</div>

CSS:

#divFirstnameHeading{
position: absolute;
top: 10px;
left: 550px;
}

#divFirstnameInput{
position: absolute;
top: 20px;
left: 800px;
}

PHP:

while($row = mysqli_fetch_array($profile)){
// show the users first name
echo "<h3 id='oldFirstnameHeading'>First Name: </h3>" . $row["<h3 id='oldFirstname'>'Firstname'</h3>"];

错误:

注意:未定义索引:'名字'


在此先感谢您的帮助

最佳答案

语法错误

$row["<h3 id='oldFirstname'>'Firstname'</h3>"]

你的数组应该类似于 firstname 所以尝试类似

echo "<h3 id='oldFirstnameHeading'>First Name: </h3><h3 id='oldFirstname'>" . $row['Firstname'] . "</h3>";

如果您自己发布查询,我可以给您更具体的答案

关于php - 查询结果在html中的布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21566618/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com