我在这个 foreach 中从数据库中获取图像路径
foreach($image as $row){
$value = $row['dPath'];
$imgpath =base_url()."images/".$value;//this is not taken
$imgpath = base_url()."images/con_icon.jpg";//this$imgpath is taken
echo $value;
当我给 $imgpath 作为 $imgpath = base_url()."images/con_icon.jpg"; 它被接受
<img src="<?php echo $imgpath; ?>" and image is displayed
$imgpath =base_url()."images/".$value;
但是当我将 $imgpath 作为echo $value;
结果时 con_icon.jpg 图像不显示是什么问题
编辑:
echo $imgpath =base_url()."images"."/".$value;
echo $img = base_url()."images/con_icon.jpg";
给了我这个
http://localhost/ssit/images/con_icon.jpg
http://localhost/ssit/images/con_icon.jpg
那为什么我不能在我的<img>
<img src="<?php echo $imgpath; ?>" name=b1 width=90 height=80
border=0 onmouseover=mouseOver() onmouseout=mouseOut()>