You can have your HTML document auto refresh itself so that d=ynamic information is continuously updated.
<meta http-equiv=”refresh” content=”5″>
autoUpdate.php
<html>
<head>
<meta http-equiv="refresh" content="5">
</head>
<body>
<?php
echo time();
?>
</body>
</html>
Be the first to comment