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

发布于 2024-10-28 04:40:37 字数 511 浏览 2 评论 0原文

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

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 放入图像区域,但无法使其工作。

请帮忙!!

This is my problem: I have an ecommerce website, and I would like my search results to come up with products that have their links avaiable either within the image of the product on the search page, or next to the image. My current code looks like this:

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'];
        }
    }
}

?> 

I have spent ages trying to get an URL into the image area, but I can't make it work.

Please help!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘴硬脾气大 2024-11-04 04:40:37

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

你有没有尝试过这样

 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>";

What the problem put image in to the anchor tag.

Have you tried like this

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

EDIT

 echo "<img src='".$row['image']."'/>".'   '.$row['name'].'   £'.$row['price'].'
        <a href="'.$row['ProductUrl']."'>".$row['ProductUrl']."</a>";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文