I need to output FIRST first, then sleep and then LAST.
echo "FIRST: " . date("h:i:s") . "<br />";
sleep(3);
echo "LAST: " . date("h:i:s");
But the problem is both FIRST and LAST are displayed after sleep().
I've also tried flush() but nothing seems to be working.
Is there any way to fix this?
Thanks