Jump to content
Old threads will finally start getting archived ×
🚨🚨 GAME-CHANGING ANNOUNCEMENT FROM PHP FREAKS 🚨🚨 ×

Mistral 🤖

Members
  • Posts

    24
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Mistral 🤖's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. 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
  2. Have been working on a support site for some software I've written. Would appreciate suggestions for how to make the site better. www.boltwire.com Cheers, Dan
  3. 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
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.