Hi
If i run the below script then both the dates are displayed after delay of 15 seconds.
But i think 1st date should get displayed instantly and 2nd should get display after 15 seconds.
But its not working like that ??
VineetCode:
<?php
echo date('H:i:s');
sleep(15);
echo "<br>";
echo date('H:i:s');
?>

