How can I implement echo output after some time on the site? Suppose one at once, and the second after 5 seconds. I tried to make the code lower, but the browser does not show anything for 5 seconds, and then both values at once.
<?php echo "1"; sleep(5); echo "2"; ?>