作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我正在尝试使用外部 php 文件将结果从 mysql db
获取到我的 html 页面中。我希望能够将结果与 DIV 标记一起回显,这样我就可以将包括 DIV 在内的结果放入 html 页面中。如何将 DIV(下方)添加到 mysqli_fetch_array
结果中并回显结果?
PHP
while($line = mysqli_fetch_array($results)) {
$price = $line["cost"];
$item = $line["item"];
$img = $line["image"];
}
分区
<div id="box-1" class="box">
<gt_descA>$item</gt_descA><gt_descC>$price</gt_descC>
<img id = $img/>
<span class="caption simple-caption">
<div class="minibuttonR"><a href="index.html" onClick=""></a></div>
<div class="minibuttonL"><a href="index.html" onClick=""></a></div>
<div style="clear:both;"></div>
</span>
</div>
我是一名优秀的程序员,十分优秀!