0

我已将图像路径存储在数据库中,并将图像存储在项目文件夹中。现在我正在尝试在我的 HTML 模板中查看所有图像及其产品。我编写了以下代码,并在输出中给了我一个空图像框,当我在新选项卡中打开该图像框时,它会打开以下 URL。

 http://localhost/cms/1

请告诉我在“img src”标签中引用图像的方式。

在此处输入图像描述

include 'connect.php';

$image_query = "select * from product_images";
$image_query_run = mysql_query($image_query);
$image_query_fetch = mysql_fetch_array($image_query_run);


if (!$query=mysql_query ("select product_id,name from products")) {
    echo mysql_error();

} else {
    while ($query_array = mysql_fetch_array($query)) {
        echo '</br><pre>';

        $product_id = $query_array['product_id'];

        echo "<a href='single_product.php?product_id=$product_id' >";
        print_r ($query_array['name']);
        echo "</a>";

        echo "&lt;img src=". $image_query_fetch
        ['images'] ." alt=\"\" /&gt;";

        echo '</pre>';
    }
}

} else {
    echo "You need to Log in to visit this Page";

}
4

2 回答 2

2

在源之前添加本地图像路径

例子

echo "<img src='http://localhost/cms/1/". $image_query_fetch['images'] .'" alt=\"\" />";

*使用 PHP *

<?php echo "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; ?>
于 2013-07-26T07:39:50.027 回答
1

您可以使用 HTML 基本标记来设置一个基本 URL,将从中解析相对 URL。见-> http://www.w3schools.com/tags/tag_base.asp

于 2013-07-26T07:38:42.847 回答