Welcome Guest, Not a member yet? Register   Sign In
Get uploaded picture from mysql database
#15

[eluser]rochellecanale[/eluser]
Controller:

Code:
public function viewMember(){
            $data['user'] = $this->user_model->getUserWhere();
            $this->load->view('sites/viewmember',$data);
            $this->load->view('templates/footer');
}

View
Code:
<?php
              
                    $this->db->select('file_path');
                    $query = $this->db->get('upload');

                    if ($query->num_rows() > 0){
                        $row = $query->row();
                        $path = $row->file_path;
                    }
                    echo "Path from DB: ".$path;
                    echo "<img src='$path' height='100' width='100' alt='from database'>";  //displays image border only
                    exit();
              ?&gt;

By the way i didn't use a model this time. I redirect my query to the view.


Messages In This Thread
Get uploaded picture from mysql database - by El Forum - 10-12-2012, 01:22 AM
Get uploaded picture from mysql database - by El Forum - 10-12-2012, 02:20 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 12:38 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:26 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:37 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:39 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:40 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:41 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:43 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:45 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:47 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:52 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:55 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:02 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:20 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:23 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:26 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:31 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB