Advertisement
roniewill

profile_img

Sep 24th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <?php
  2.  $id = $this->session->userdata('id');
  3.  $this->db->where('colaborador', $id);
  4.  $this->db->where('permissao', 13);
  5.  $fotos = $this->db->get('files')->result();
  6.  
  7.  if(!empty($fotos)){
  8.      foreach($fotos as $foto){
  9.         echo '<img src="'.base_url('upload/'.$foto->file_name)).'" width="50" height="50" class="img-circle" />';
  10.      }
  11.  }else{
  12.     echo '<img src="http://www.socialbits.com.br/wp-content/uploads/2015/03/user.png" width="50" height="50" class="img-circle" />';
  13.  }
  14.  ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement