I've been beating my head against the keyboard on this one....I know I've done it before, though with Perl.
What I want to do is download and display images stored in a MySQL database. I've tried everything i could think of, but below is where I am at now (simplicity)
[INDENT] ob_clean();
$file_contents = $row[file_contents];
$size=count($file_contents);
header("\"Content-type: " . $row[file_type] . "\"");
echo $row[image];
[/INDENT]
😕