0

我很抱歉,这个标题可能没有意义。

基本上发生了什么是我有一个页面,上面显示了从用户上传到数据库的图像。我希望用户能够选择其中一个图像,这些图像将它们链接到另一个仅显示他们选择的图像的页面。问题是我无法让所选图像显示在链接页面上。

知道发生了什么吗?

// Database credentials
require("config.php");



// Connect to the database
    $dbc = mysqli_connect ($db_host, $db_user, $db_password, $db_name) OR die ('Could not connect to MySQL: '. mysqli_connect_error());

// Get the image
    $query = "SELECT 
                * 
            FROM 
                image
            WHERE
                image_id = '{$_GET['image']}' LIMIT 1";

$result = mysqli_query($dbc, $query) or die('Query failed: ' . mysqli_error($dbc));
$row = mysqli_fetch_assoc($result);

// Back to all images
echo "<p><a href=\"images.php\">Back to the gallery</a></p>";

// Display the chosen image image
echo "{$row['image']}";

我正在玩这样的东西,但它给了我一个破碎的 url 路径图标。

echo '<img src="upload/'.$row["image"].'">';
4

1 回答 1

1

你 shd 回声:

echo "<img src=".row['image']." />";
于 2013-10-13T01:28:55.230 回答