There are a couple of ways you could refresh a page.
If you want to use PHP you could do this.
PHP Code:
<?php
header("Refresh: 120;");
?>
If you wanted to use javascript in an html document you could do this,
Code:
<script type="text/javascript">
function reFresh() {
location.reload(true)
}
/* Set the number below to the amount of delay, in milliseconds,
you want between page reloads: 1 minute = 60000 milliseconds. */
window.setInterval("reFresh()",300000);
</script>
You could even use a META tag to refresh a page.
Code:
<META HTTP-EQUIV="REFRESH" CONTENT="10">
Bookmarks