显示来自另一个base_url的图像

时间:2015-08-28 15:05:06

标签: php codeigniter

我有管理员后端的单独网址和frontend.my文件结构如下所示。  [1]:管理员文件夹中的http://i.stack.imgur.com/55I3U.png有应用系统文件夹和css图像等。 前端网址 - localhost / abc 后端url - localhost / abc / admin 现在我想在管理文件夹中的上传文件夹中显示前端的图像。

我是怎么做的。

<?php echo "<img src='" . base_url().$post->image."' width=150px; height=100px;>";?> 

根据视图的基础url的这一部分是localhost / abc。

现在我想添加前端基本网址的后端网址。

查看

 <?php if($post) { ?> 
    <?php foreach($post as $post){?> 
    <tr> 
    <td><?php echo $post->id ; echo '&nbsp; &nbsp;';?></td> 
    <!--<td><?php echo $post->image ; echo '&nbsp; &nbsp; &nbsp;  &nbsp;&nbsp; &nbsp; &nbsp;  &nbsp;'?></td>-->
             <td><?php echo "<img src='" . base_url().$post->image."' width=150px; height=100px;>";?></td></td> 
    </tr> 
    <?php } 
    } else {

        ?> 
    <tr><td clospan="4" align="center">No records found to display</td></tr> 


    <?php } ?>

控制器

public function index(){  

 $data['post'] = $this->floor_model->get_plan(); // calling Post model method getPosts() 
        $this->load->view('user_include/header');
        $this->load->view('plan/floor',$data);
    }

模型

function get_plan(){


$this->db->select("floor_plan.id,floor_plan.image"); 
$this->db->where("user_id",$this->session->userdata['logged_in']['id']); 
$this->db->from('floor_plan');
$query = $this->db->get();
return $query->result();


}

1 个答案:

答案 0 :(得分:0)

<td><?php echo "<img src='".base_url().'admin'.$post->image."' width=150px; height=100px;>";?></td>