If you want to refresh the page at a certain interval, include this in your <head>
:
<meta http-equiv="refresh" content="5">
Change "5" to whatever number of seconds you prefer.
If you want to refresh only when things have changed, you'd need to get some Javascript involved on the client - e.g. an Ajax request to a URL that asks if there's new data since page load, and refreshes if necessary.