127.0.0.1 Posted January 12, 2007 Share Posted January 12, 2007 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 More sharing options...
Barand Posted January 13, 2007 Share Posted January 13, 2007 Never tried that situation but I don't think so. The output from the AJAX script doesn't go anywhre except back to your script. Link to comment https://forums.phpfreaks.com/topic/33970-output-buffering/#findComment-159602 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.