Hi,
Does anybody know of another way to display an image from mysql besides

header("Content-type: image/jpg");

can u be little more clear?
have you used blob for your images saving in your database?

or this :

header("Content-type: image/jpeg");
        $im =  imagecreatefromstring(mysql_result($result, 0));
        imagejpeg($im);
        imagedestroy($im);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.