gpt4 book ai didi

php - 使用 PHP,在搜索中如何在来自 MySql 数据库的图像中包含 html 链接?

转载 作者:行者123 更新时间:2023-11-29 14:52:28 25 4
gpt4 key购买 nike

这是我的问题:我有一个电子商务网站,我希望我的搜索结果能够提供其链接位于搜索页面上的产品图像内或图像旁边的产品。我当前的代码如下所示:

if($_GET['searchBox'] !='')
{
if(mysql_num_rows($searchresult)==0) {
echo 'Your search returned no results';
}
else
{
while ($row = mysql_fetch_assoc($searchresult))]
{
echo "<img src='".$row['image']."'/>".' '.$row['name'].' £'.$row['price'].' '.$row['ProductUrl'];
}
}
}

?>

我花了很长时间尝试将 URL 放入图像区域,但无法实现。

请帮忙!!

最佳答案

将图像放入 anchor 标记时出现什么问题。

你试过这样吗

 echo "<a href='".$row['ProductUrl']."'><img src='".$row['image']."'/></a>";

编辑

 echo "<img src='".$row['image']."'/>".'   '.$row['name'].'   £'.$row['price'].'
<a href="'.$row['ProductUrl']."'>".$row['ProductUrl']."</a>";

关于php - 使用 PHP,在搜索中如何在来自 MySql 数据库的图像中包含 html 链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5457089/

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