gpt4 book ai didi

javascript - php 检索数据以在 HTML 中填充 DIV

转载 作者:太空宇宙 更新时间:2023-11-04 14:11:40 25 4
gpt4 key购买 nike

我需要建议。以下是我已有的和我的要求。

MySQL 表有 4 列。我正在使用 php 检索单个字符串 (CODE A) 中所有行的数据。

我有一个 HTML 格式的 DIV 设置(代码 B - 如下图所示)

我希望能够在 DIV 设置中使用检索到的数据来创建多个图像(类似于 html 中的 for 循环?)- 如何实现我的要求?

我应该怎么做?

代码 A

while($row = mysqli_fetch_array($query, MYSQLI_ASSOC)){ 
$id = $row["id"];
$firstname = $row["firstname"];
$lastname = $row["lastname"];
$itemdate = strftime("%b %d, %Y", strtotime($row["datemade"]));
$dataString .= $id.'|'.$firstname.'|'.$lastname.'|'.$itemdate.'||';
}

代码 B

 <div id="mainwrapper">
<div id="box-1" class="box">
<gt_descA>Teak Chair</gt_descA><gt_descC>$75.34</gt_descC>
<img id="image-1" src="imagez/designs/thumbs/0/teak_chair001.jpg"/>
<span class="caption simple-caption">
<div class="minibuttonR"><a href="index.html" onClick="gotowebpage('11');"></a></div>
<div class="minibuttonL"><a href="index.html" onClick="gotowebpage('11');"></a></div>
<div class="minibuttonC"><a href="index.html" onClick="gotowebpage('11');"></a></div>
<div style="clear:both;"></div>
</span>
</div>
</div>

图像(DIV 设置)

enter image description here

我希望能够从检索到的数据和 DIV 设置中实现这一点 enter image description here

最佳答案

将 html 代码放入 php 循环中。

例如。

while($row = mysqli_fetch_array($query, MYSQLI_ASSOC)){ 
$id = $row["id"];
$firstname = $row["firstname"];
$lastname = $row["lastname"];
$itemdate = strftime("%b %d, %Y", strtotime($row["datemade"]));
$dataString .= $id.'|'.$firstname.'|'.$lastname.'|'.$itemdate.'||';
?>


<div id="box-1" class="box">
<gt_descA>Teak Chair</gt_descA><gt_descC>$75.34</gt_descC>
<img id="image-1" src="imagez/designs/thumbs/0/teak_chair001.jpg"/>
<span class="caption simple-caption">
<div class="minibuttonR"><a href="index.html" onClick="gotowebpage('11');"></a></div>
<div class="minibuttonL"><a href="index.html" onClick="gotowebpage('11');"></a></div>
<div class="minibuttonC"><a href="index.html" onClick="gotowebpage('11');"></a></div>
<div style="clear:both;"></div>
</span>
</div>
<?php

}

关于javascript - php 检索数据以在 HTML 中填充 DIV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20697473/

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