使用mysqli查询时,我的图像不显示

时间:2014-11-27 16:19:48

标签: php image mysqli

我正在处理图片,我想在我的网站中只显示一张图片,所以我在function.php文件中执行了此操作:

function image_try(){
        $query_image="SELECT IMG
                      FROM VEG_TECH
                    WHERE IMG='i am a boy.jpg'";
        // Perform database query for total count
        $all_image=mysql_query($query_image);//{$row["id"]}
        confirm_query($all_image);
        return($all_image);
    }

在我的image.php我做了这个

<?php
include_once('connections/connection.php'); 
    require_once("function.php");
 $about = image_try();
                while($about_fetch=mysql_fetch_array($about)){ ?>
 <img src="images/<?php echo $about_fetch["IMG"]; ?>">
 <?php
}
?>

没有显示图像。我认为我的查询是正确的。 感谢帮助

1 个答案:

答案 0 :(得分:0)

你的图片是空格。

使用此:

echo str_replace(' ', '%20', $about_fetch["IMG"]);