Welcome Guest, Not a member yet? Register   Sign In
Output generated html code before end of script execution
#1

[eluser]jant90[/eluser]
Is it possible to output the so far generated html code with CodeIgniter? When I load a slow script now I don't see anything in my browser until the script is completely done.

For example take the default controller:
Code:
function index()
{
    $this->load->view('welcome_message');
    
    // Code to output all the html generated above
    
    sleep(10);
    echo("script is done loading");
}

How do I make sure my browser already gets to see the welcome message before the 10 second sleep kicks in?

Is it even possible?
#2

[eluser]nuwanda[/eluser]
http://ellislab.com/codeigniter/user-gui...utput.html

And read up on php's native buffering functions.
#3

[eluser]jant90[/eluser]
Thanks. But I actually have read that but I still don't get how to send the entire buffer to the browser. I also tried all of the following but none of them worked:
ob_flush();
flush();
ob_end_flush();

Can anyone give me some clarification on this subject, as I really don't know where to start looking.
#4

[eluser]nuwanda[/eluser]
It makes sense to post your code.




Theme © iAndrew 2016 - Forum software by © MyBB