データベースで作成した画像参照を背景として使用したい: url. 私はすでにデザインを作成しました => http://i49.tinypic.com/30ihudz.png現在のコードでは、画像を取得する div スタイルを使用していますが、画像が表示されません。誰かが私を案内してくれませんか?前もって感謝します。
パブリック関数displayProduct() {
$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(\'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 .= '€'.$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;
}