fast4god Posted May 28, 2008 Share Posted May 28, 2008 I have the following code in my software, but when the output it displayed, the tail end of the page is cut off... No idea why... ob_start(); $out = BOLTmakepage(); $size = ob_get_length($out); header("Content-Type: text/html; charset=utf-8"); header("Content-Length: $size"); header("Connection: close"); print_r($out); ob_end_flush(); flush(); If I just replace all this with print_r(BOLTmakepage()); I get the proper page display. But then I can't get my browser to disconnect and start running my background functions. I'm wondering if this is a multi-byte issue? Thanks in advance for any help that can be given. Cheers, Dan Link to comment https://forums.phpfreaks.com/topic/107643-ob_get_length-returning-wrong-value/ Share on other sites More sharing options...
fast4god Posted May 28, 2008 Author Share Posted May 28, 2008 I've been playing around with this quite awhile and hounding the php chat rooms with NULL success. I did discover that the problem only occurs on IE7, not Firefox. (Haven't tested all browsers). Getting rid of the ob_start and ob_end_flush prints it out properly, but does not disconnect the browser. Any help that could be give is much appreciated. Dan Link to comment https://forums.phpfreaks.com/topic/107643-ob_get_length-returning-wrong-value/#findComment-552113 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.