所以我遇到了这个问题,我想从不是 blob 的数据库中检索图像,我使用 image_link 并将它与我的文件夹链接"images/"
例如:
"images/Banner1_1.png" << id=1
"images/Banner1_2.png" << id=2
"images/Banner1_3.png" << id=3
所有这些链接都在我的数据库中。
所以我在这里要做的是,我有 html 代码,我希望使用指定的 ID 将图片显示在此页面上,例如:
索引.html
<img src="get.php?id=1" />
<img src="get.php?id=2" />
<img src="get.php?id=3" />
获取.php
<?php
mysql_connect("localhost", "root", "") or die(mysql_error()) ;
mysql_select_db("aliquantum") or die(mysql_error()) ;
$id = $_GET['id'];
if(!isset($id) || empty($id) || !is_int($id)){
die("Please select your image!");
}else{
$sql = "SELECT image_link FROM images WHERE id='".$id."'";
$url = mysql_query($sql);
$row = mysql_fetch_array($url);
$link= '.$row['image_link'].';
echo $link;
}
?>
但它没有显示任何内容,或者只是出现了损坏的图像图标。