从文件夹中检索上载的图像以及表格行中的数据

时间:2016-06-08 13:49:33

标签: php html mysql codeigniter

管理成功上传图片,我现在正在尝试查看图片,但我没有成功。我没有收到错误。除图像外,其余数据都会输出。

我的模特

 function mycon(){

     $client_id = $this->session->userdata('client_id'); 
     $area = $this->session->userdata('area'); 
     $this->db->select('*'); // the select statement
     $this->db->where('client_id',$client_id);
     $this->db->or_where('consignment.status',0); 
     $this->db->or_where('consignment.status',1); 
     $this->db->or_where('consignment.status',2); 
     $q = $this->db->get('consignment'); // the table
     return $q;
 }

我的控制器的一部分

  $data['v']=$this->Clientaccount_model->mycon(); 

我的观点

     <?php
     foreach ($v->result() as $row) {    ?>
     <section class="invoice">
     <div class="row invoice-info">
     <div class="col-sm-3 invoice-col">
     <img src="<?php echo base_url()?>/uploads/" width="100">              
     </div><!-- /.col -->
     <div class="col-sm-5 invoice-col">
     <address>
     LuggageID: <?php echo $row->luggage_id;?><br>
     Lagguage Location: <?php echo $row->l_area;?><br>
     Lagguage Destination: <?php echo $row->d_area;?><br>
     Lagguage Description: <?php echo $row->description;?><br>
     Date: <?php echo $row->dom;?><br>
     </address>
     <?php }  ?> 

我的表格结构

列 luggage_id, CLIENT_ID, l_area, l_address, d_area, 首选, DOM, 汤姆, 描述, 质量, RECORD_ID, 文件名, 尺寸, 上传时间, 状态,

图像文件夹是上传的,它在根

1 个答案:

答案 0 :(得分:0)

我认为您的数据库中的文件名行与您的图片有关,但在您的视图中,您只有EcoreUtil.create(eClass),从不提供像<img src="<?php echo base_url()?>/uploads/" width="100">这样的图片名称,不是吗? / p>