There is the following small code:
echo "<h3>Please waiting for 10 seconds...</h3>"; flush(); sleep(1); for ($i = 1; $i <= 10; $i++) { echo $i." "; flush(); sleep(1); } The browser first displays the inscription and the first digit, then the remaining digits with a pause between them of 1 second. I figured that out, which is why I don’t understand why the system buffer flush to the browser does not work with the first flush () command that comes after
echo "<h3>Please waiting for 10 seconds...</h3>";