gpt4 book ai didi

php - PHP通过MySQL显示特定图片的方法

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

我正在尝试显示要在 PHP/HTML 页面中显示的每个特定图像,它当前正在显示所有页面,但我希望它只在我输入函数时显示一个。

我的代码:

 <div class="ser-grid-list img_style">
<div class="gallery1">


</div>
</div>
<div class="ser-grid-list img_style">
<div class="gallery1">

</div>
</div>
<div class="ser-grid-list img_style">
<div class="gallery1">

</div>
</div>
<div class="ser-grid-list img_style">
<div class="gallery1">
<?php
$sql = "SELECT image FROM product"; //sql query
$result = mysql_query($sql) or die(mysql_error($connection));
while ($row = mysql_fetch_array($result)) //display the results
{
echo "<p><img src='../images/" . ($row['image']) . "'" . " " . " />";
}

?>

它在做什么:

http://puu.sh/cCs29/6769667d43.jpg

我想让他们做的是从左到右对齐。它使用来自 html 的静态图像,但我决定使用数据库。这是之前的

http://puu.sh/cCs5g/919c0c8c57.jpg

谢谢!

最佳答案

像这个一样简单地获取你的图片的id

 $sql = "SELECT image FROM product where id=101";

这是最简单的?我错过了什么吗?

关于php - PHP通过MySQL显示特定图片的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26726771/

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