0

我想使用我在数据库中制作的图像参考作为背景:url。我已经设计好了 => [IMG]http://i49.tinypic.com/30ihudz.png[/IMG]。在我当前的代码中,我使用 div 样式来检索图像,但这并没有显示任何图像。有人可以指导我吗?提前致谢。

public function displayProduct()
{

if($product = $this->db->query("SELECT id, title, description, price, filename FROM trips ORDER BY id"))
            {
                while ($row = $product->fetch_assoc())
                            {
                        $output .= '<div class="reisbox">';
                                $output .= '<div id="reis_insidebox1" style=" background: url("C:/xampp/htdocs/webshop/public/img/content/"'.$row['filename'].' ") width="1000" height="500">';
                                $output .= '<div class="reis_textbox">';
                                $output .= '<h2>'.ucfirst($row['title']).'</h2>';
                                    $output .= '<article>';
                                    $output .=  ucfirst($row['description']);
                                    $output .= '</article>';
                                    $output .= '</div>';
                                $output .= '<div class="rightboxx">';
                                $output .= '<div class="reis_price_box">';
                                $output .= '<div class="reis_price_box_text">';
                                $output .= '&euro;'.$row['price'];
                                $output .= '</div>';
                                $output .= '<div class="more_box">';
                                $output .= '<a href="index.php?page=reis.php&pid='.$row['id'].'"><p>Lees meer..</p></a>';
                                $output .= '</div>';
                                $output .= '</div>';
                                $output .= '</div>';
                                $output .='<br />';
                                $output .= '<div id="add">';
                                $output .='<a href="index.php?page=cart.php&action=add&id='.$row['id'].'"><p>Add to cart</p></a>';
                                $output .= '</div>';
                        $output .= '</div>';
                                $output .= '</div>';
                    }
                    return $output;

                }
        }
4

1 回答 1

0

如果你真的想从“C:/xampp/.../”中获取文件,你应该在前面添加一个 file:/// 但我猜你只是想使用一个相对路径,比如“img/content/andthefilenamefromdatabase” .png"

要继续,您实际上style是在 CSS 背景中关闭 -tag ",您可能希望在'此处使用或完全跳过字符串文字

考虑到这一切,它可能看起来像这样:

$output .= '<div id="reis_insidebox1" style="background: url(\'img/content/'.$row['filename'].'\')" width="1000" height="500">';

请注意,我'在这里使用反斜杠转义了 CSS 中的 。

于 2013-02-24T15:03:04.113 回答