Jump to content

Output Buffering


127.0.0.1

Recommended Posts

Lets say I have a PHP script that uses output buffering, and it looks something like this...

[code]
ob_start("ob_gzhandler");

... web page content here ...

ob_end_flush();
[/code]

Now, lets say inside that page content I'm using AJAX to call up another PHP script. Do I have to use output buffering for that script too?

Link to comment
https://forums.phpfreaks.com/topic/33970-output-buffering/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.