Welcome Guest, Not a member yet? Register   Sign In
Loading Images from MySQL db to view in CI
#5

[eluser]GeoXeo[/eluser]
Hi,

I just spent a few minutes testing that ... no problem at all.

database:
Code:
CREATE TABLE ci_images (
  id int(11) NOT NULL,
  image blob NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

model (image_model.php):
Code:
public function get()
    {
        $this->load->database();
        $query = $this->db->select('image')
                           ->from('images')
                            ->where('id', 1)
                            ->get('');
                          
        $result = $query->row();
                          
         return $query->num_rows() === 1 ? $result : false;                
    }

controller (image.php):
Code:
function show()
    {
        $this->load->model('image_model');
        $item = $this->image_model->get();
        
        Header("Content-type: image/jpeg");
        echo $item->image;
    }

When I load a jpg file into my blob, I can see it in my browser typing http://localhost/image/show

Hopefully this code will work for you ...


Messages In This Thread
Loading Images from MySQL db to view in CI - by El Forum - 10-28-2009, 11:15 PM
Loading Images from MySQL db to view in CI - by El Forum - 10-29-2009, 12:52 AM
Loading Images from MySQL db to view in CI - by El Forum - 10-29-2009, 07:32 AM
Loading Images from MySQL db to view in CI - by El Forum - 12-13-2010, 12:17 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-13-2010, 12:57 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-13-2010, 02:02 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-13-2010, 03:47 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-13-2010, 04:34 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-14-2010, 12:12 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-14-2010, 12:59 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-14-2010, 05:23 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-14-2010, 08:55 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 05:30 AM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 05:34 AM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 06:12 AM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 10:13 AM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 12:17 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 01:07 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 01:28 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 03:24 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 04:45 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-15-2010, 06:06 PM
Loading Images from MySQL db to view in CI - by El Forum - 12-17-2010, 05:50 AM
Loading Images from MySQL db to view in CI - by El Forum - 12-17-2010, 04:15 PM



Theme © iAndrew 2016 - Forum software by © MyBB