Not sure what I'm doing, first time with ob, I'm more of a PHP-MySQL guy
I have tried using:
Code: Select all
<?
$output = ob_get_contents();
$mklib->printpage("1", "1", "Playlist and Requests", $output);
?>
Leaving out the flush, but that does the same thing.. Declaring $output as ob_end_flush outputs the "REMOVED ENDLESS CODE" line above the printed page, and outputs a "1" in place of the $output area. I'm basically trying to include a heavy PHP page into a CMS, which unlike something like PHPNuke doesn't give me the option of using Open and CloseTable functions, I was told output buffering would be my best bet.
Even if I completely remove the $output declaration and never even end the buffer, it still displays the code above the page
