如何在Codeigniter中显示/显示图像?

时间:2018-07-06 13:02:06

标签: php codeigniter codeigniter-3 codeigniter-query-builder

我正在尝试从该文件夹中显示我的房屋的图像,但是它显示了这样的错误

  

http://localhost/jageerx/assets/images/House/assets/images/House28278954_957081961107785_391331158313648576_n.jpg

     
    

404(未找到)

  

我的代码在下面

<?php
$PropertyType = "";
$image = "";
if($data != null)
{
foreach($data as $key=>$value)
{
    $PropertyType = $value['PropertyType'];
    $image=$value['HouseImage1'];
}
}
?>

前端代码是这个

 <img src="<?php echo base_url('assets/images/House/'. $image);?>" alt="tab1" class="img img-responsive"> 

文件夹层次结构在下面提到

This is the hierarchy of folders

这是模型功能

public function SIngleHouseADD($houseID)
{
    $this->db->select('*');
    $this->db->from('housedetail');
    $this->db->where('HouseID', $houseID);
    //$qry = $qry->result_array();
    $query=$this->db->get();
    $resultArray = $query->result_array();
    return $resultArray;
    //return $qry;
}

这是控制器

public function SingleProperty()
{
    //$HouseID = $_GET['id'];
    $this->load->model('SingleAddModel');
    $plots = $this->SingleAddModel->SIngleHouseADD($_GET['id']);
    $data = array();
    $data["data"] = $plots;
    $this->load->view('SinglePropertyDetail_view', $data);
}

3 个答案:

答案 0 :(得分:1)

希望这对您有帮助:

由于您的$image变量已包含assets/images/House,因此不应再次在base_url()中使用

应该是这样的:

 foreach($data as $key=>$value) {
        $PropertyType = $value['PropertyType'];
        $image=$value['HouseImage1'];
    ?>
        <img src="<?php echo base_url().$image;?>" alt="tab1" class="img img-responsive"> 

    <?php }?>

答案 1 :(得分:1)

我不知道这是否最适合您,但是当我在codeigniter中添加图像或CSS时,我通常将它们添加到与index.php相同的级别,所以它就像这样!

查看屏幕截图。 screenshot

答案 2 :(得分:1)

int中,您正在c中传递base_url()相同的路径,因此它是重复的路径,我建议您首先assets/images/House/结果然后使用它们在html中。对于您的图片,您可以使用:

$image

OR

echo