The server has various modules loading running and exiting within a session, until output to the client. My class is a plugin to a popular helpdesk system and I do not have access to modify other system files to enable ob_start().
- Module #1
- Module #2
- Module #3
- Module #4
- Module #5 <- my class include_once here
My class needs the HTML that has accumulated by the previous modules, which will later be sent to the client.
ob_start() is not very useful in my situation since I would have to go and modify some module up the chain and add ob_start(); before it begins. We have to bear in mind that I can only work within my module