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

[eluser]Unknown[/eluser]
Hey guys,

My current problem is loading images from MySQL database to the view in CI.

Code:
<?php


    $val = "1";

    $con = mysql_connect("localhost","root","bla");
    if (!$con)
    {
        die('Could not connect: ' . mysql_error());
    }
    
    mysql_select_db("studentDB", $con);

    $val = 1;
    $dbQuery = "SELECT photo FROM students WHERE stud_id=$val";

    $result = mysql_query($dbQuery) or die("Couldn't get file list". mysql_error());

    if(mysql_num_rows($result) == 1)
    {
        $photo = mysql_result($result, 0, "photo");
        Header("Content-type: image/jpeg");
        echo $photo;
    }
    else
    {
        echo "Record doesn't exist.";
    }

?>

The above is the code I used in a PHP file (outside CI) for testing purposes, which successfully loaded the image from the database.

I pasted the exact same code on a view in my CI folder(which I figure should work), and ran it through a controller function which redirected to this view and what came out was gibberish instead of the image.

The 'photo' field type is of 'blob' format.

I wonder if there is any extra lines of code I missed out.
Thanks in advance!


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