Welcome Guest, Not a member yet? Register   Sign In
displaying BLOB data from DB
#12

[eluser]junaids[/eluser]
i have changed th controller a bit
Code:
function image()
          {
             $u = $this->session->userdata('username');
             $this->db->where('username', $u);
            $this->db->select('Profile_picture');
            $image_data = $this->db->get('user');
            $image = imagecreatefromstring($image_data);
              header('Content-Type: image/png');
            imagepng($image);
            imagedestroy($image);
            exit;
          }

where user is the DB table and Profile_picture is the user table field.
now when i go to this function in address abr it gives many errors like.
Severity: 4096

Message: Object of class CI_DB_mysql_result could not be converted to string.
where m i wrong?


Messages In This Thread
displaying BLOB data from DB - by El Forum - 05-11-2009, 12:37 AM
displaying BLOB data from DB - by El Forum - 05-11-2009, 04:02 AM
displaying BLOB data from DB - by El Forum - 05-11-2009, 06:02 AM
displaying BLOB data from DB - by El Forum - 05-11-2009, 06:11 AM
displaying BLOB data from DB - by El Forum - 05-12-2009, 03:20 AM
displaying BLOB data from DB - by El Forum - 05-12-2009, 03:32 AM
displaying BLOB data from DB - by El Forum - 05-12-2009, 03:50 AM
displaying BLOB data from DB - by El Forum - 05-12-2009, 03:59 AM
displaying BLOB data from DB - by El Forum - 05-12-2009, 04:00 AM
displaying BLOB data from DB - by El Forum - 05-12-2009, 08:27 AM
displaying BLOB data from DB - by El Forum - 05-12-2009, 01:18 PM
displaying BLOB data from DB - by El Forum - 05-12-2009, 02:19 PM
displaying BLOB data from DB - by El Forum - 05-12-2009, 02:24 PM
displaying BLOB data from DB - by El Forum - 05-12-2009, 02:34 PM
displaying BLOB data from DB - by El Forum - 06-21-2009, 11:32 PM



Theme © iAndrew 2016 - Forum software by © MyBB