I have a html page that runs several consecutive php/bash scripts, and I would like to make the result visible on the page, before the next script starts. Is that possible?
Example:
<html> <body>
<br>Html1<br>
<?php
echo "A";
sleep(4);
echo "B";
?>
<br>Html2<br>
<?php
echo "C";
sleep(4);
echo "D";
?>
<br>Html3<br>
</body> </html>
...here nothing is shown before everything is done.