Hi!
I have a PHP script that takes a while to process.
But while it works it should send some text to the browser:
<?
echo "This function takes a bit of time...";
<my php function>
echo "Operation successfull"!);
?>
But the problem is, that i get the first and the last echo text AFTER the operation has finished.
But I want to see the first echo text before it is finished...
I hope you can help me