Skip to content

Instantly share code, notes, and snippets.

@hemache
Created October 30, 2012 19:37
Show Gist options
  • Save hemache/3982480 to your computer and use it in GitHub Desktop.
Save hemache/3982480 to your computer and use it in GitHub Desktop.
php image display from database
...
if (!$result) {
print 'Error: '. mysql_error();
exit;
}
else
{
$row = mysql_fetch_row($result);
ob_start();
header('Content-type: image/png');
header('Content-length: '. strlen($row['Image']) );
print($row['Image']);
ob_end_flush();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment