OF COURSE that wouldnt have worked! I never looked at it like that! How embarrassing! 
But the other suggestion still isnt working. The header type is set correct.
Ive tried the following:
PHP Code:
$fp = fopen($filepath,'r');
header('Content-Type: image/jpeg');//assuming you are grabbing a jpg image here
header("Content-Length: " . filesize($filepath));
header('Content-Disposition: inline; filename=D:\aimhigherhumber.org\student\secureme.jpg');
die( fpassthru($fp) );
and
$filepath = 'D:\aimhigherhumber.org\student\secureme.jpg';
$fp = fopen($filepath,'r');
header('Content-Type: image/jpeg');//assuming you are grabbing a jpg image here
header("Content-Length: " . filesize($filepath));
header('Content-Disposition: inline; filename=$filename');
die( fpassthru($fp) );
Bookmarks