Firstly, I want to echo text and ,after 5 seconds,I want to echo another text. So I write...
<?php
echo 'Text';
flush();
sleep(5);
flush();
echo 'Another Text';
?>
But I see both of (Text Another Text ) after 5 seconds.How can I do for this?