<!DOCTYPE html>
<html>
<body>
<?php
echo date('h:i:s') . "<br>";
//sleep for 5 seconds
usleep(5000000);
//start again
echo date('h:i:s');
?>
</body>
</html>